HTMLAnchorElement: hostname プロパティ

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

HTMLAnchorElement.hostname プロパティは、URL のドメインを含む文字列です。

文字列です。

js
// <a id="myAnchor" href="/ja/docs/HTMLAnchorElement"> 要素が文書内にあるとします
const anchor = document.getElementById("myAnchor");
anchor.hostname; // 'developer.mozilla.org' を返す

仕様書

Specification
HTML Standard
# dom-hyperlink-hostname-dev

ブラウザーの互換性

BCD tables only load in the browser

関連情報