--- title: HTMLHyperlinkElementUtils.host slug: Web/API/HTMLHyperlinkElementUtils/host tags: - API - Experimental - HTMLHyperlinkElementUtils - Property - Reference - URL API translation_of: Web/API/HTMLHyperlinkElementUtils/host ---
{{ApiRef("URL API")}}

HTMLHyperlinkElementUtils.hostプロパティは、ホストを含む {{domxref("USVString")}} です。 ホストは、ホスト名の後に、URL のポートが空でない場合、':'、および URL のポートが続きます。

構文

string = object.host;
object.host = string;

var anchor = document.createElement("a");

anchor.href = "https://developer.mozilla.org/en-US/HTMLHyperlinkElementUtils.host"
anchor.host == "developer.mozilla.org"

anchor.href = "https://developer.mozilla.org:443/en-US/HTMLHyperlinkElementUtils.host"
anchor.host == "developer.mozilla.org"
// 443 がスキームのデフォルトポートであるため、ポート番号は含まれません

anchor.href = "https://developer.mozilla.org:4097/en-US/HTMLHyperlinkElementUtils.host"
anchor.host == "developer.mozilla.org:4097"

仕様

仕様 状態 コメント
{{SpecName('HTML WHATWG', '#dom-hyperlink-host', 'HTMLHyperlinkElementUtils.host')}} {{Spec2('HTML WHATWG')}} 初期定義

ブラウザーの互換性

{{Compat("api.HTMLHyperlinkElementUtils.host")}}

関連情報