WorkerLocation: toString() 方法
注意:此功能仅在 Web 工作线程 中可用。
toString()
字符串化器 方法是 WorkerLocation
对象的方法,它返回一个包含工作线程位置的序列化 URL
的字符串。它等同于 WorkerLocation.href
。
语法
js
toString()
参数
无。
返回值
无 (undefined
).
示例
js
// In a Web worker, on the page https://mdn.org.cn/en-US/docs/Web
const result = location.toString(); // Returns 'https://mdn.org.cn/en-US/docs/Web'
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。
另请参阅
- 它所属的
WorkerLocation
接口。