HTMLAreaElement: username プロパティ

HTMLAreaElement.username プロパティは、ドメイン名の前で指定されたユーザー名の入った文字列です。

文字列です。

エリアのリンクからユーザー名を取得

js
// <area id="myArea" href="https://anonymous:flabada@developer.mozilla.org/ja/docs/HTMLAreaElement"> 要素が文書にあったとします
const area = document.getElementByID("myArea");
area.username; // 'anonymous' を返す

仕様書

Specification
HTML Standard
# dom-hyperlink-username-dev

ブラウザーの互換性

BCD tables only load in the browser

関連情報