--- title: URL.hostname slug: Web/API/URL/hostname translation_of: Web/API/URL/hostname ---
{{domxref("URL")}} 接口的 hostname
属性是一个 {{domxref("USVString")}} 值,包含有 URL 中的域名。
{{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; // Returns:'developer.mozilla.org'
Specification | Status | Comment |
---|---|---|
{{SpecName('URL', '#dom-url-hostname', 'URL.hostname')}} | {{Spec2('URL')}} | 初始定义 |
{{Compat("api.URL.hostname")}}