SharedWorkerGlobalScope.name - Web APIs 编辑
The name
read-only property of the SharedWorkerGlobalScope
interface returns the name that the SharedWorker
was (optionally) given when it was created. This is the name that the SharedWorker()
constructor can pass to get a reference to the SharedWorkerGlobalScope
.
Syntax
var nameObj = self.name;
Value
A DOMString
.
Example
If a shared worker is created using a constructor with a name
option:
var myWorker = new SharedWorker("worker.js", { name : "mySharedWorker" });
the SharedWorkerGlobalScope
will now have a name of "mySharedWorker", returnable by running
self.name
from inside the shared worker.
Specifications
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'name' in that specification. | Living Standard |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论