URL:host 属性

注意:此功能在 Web Workers 中可用。

hostURL 接口的一个字符串属性,包含主机,即 hostname,然后,如果 URL 的 端口 不为空,则添加一个 ':',后跟 URL 的 port

字符串。

示例

js
let url = new URL("https://mdn.org.cn/en-US/docs/Web/API/URL/host");
console.log(url.host); // "developer.mozilla.org"

url = new URL("https://mdn.org.cn:443/en-US/docs/Web/API/URL/host");
console.log(url.host); // "developer.mozilla.org"
// The port number is not included because 443 is the scheme's default port

url = new URL("https://mdn.org.cn:4097/en-US/docs/Web/API/URL/host");
console.log(url.host); // "developer.mozilla.org:4097"

规范

规范
URL 标准
# dom-url-host

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅

  • 它所属的 URL 接口。