--- title: URL.hostname slug: Web/API/URL/hostname translation_of: Web/API/URL/hostname ---
{{ApiRef("URL API")}}

{{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")}}

参考