--- title: URL.hostname slug: Web/API/URL/hostname tags: - API - Property - Reference - URL - hostname translation_of: Web/API/URL/hostname ---
{{domxref("URL")}} インターフェイスの hostname
プロパティは、URL のドメインを含む {{domxref("USVString")}} です。
{{AvailableInWorkers}}
string = object.hostname; object.hostname = string;
{{domxref("USVString")}}。
var url = new URL('https://developer.mozilla.org/en-US/docs/Web/API/URL/hostname'); var result = url.hostname; // 戻り値: 'developer.mozilla.org'
仕様 | 状態 | コメント |
---|---|---|
{{SpecName('URL', '#dom-url-hostname', 'URL.hostname')}} | {{Spec2('URL')}} | 初期定義 |
{{Compat("api.URL.hostname")}}