WorkerLocation: host 属性
注意: 此功能仅在 Web Workers 中可用。
host
是 WorkerLocation
对象的属性,它返回工作者位置的 host
部分。
值
字符串。
示例
js
// In a Web worker, on the page https://127.0.0.1:8080/
const result = location.host; // Returns 'localhost:8080'
规范
规范 |
---|
HTML 标准 # dom-workerlocation-host |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。
另请参见
- 它所属的
WorkerLocation
接口。