郜林刘健现身梅州五华县 为青少年公益足球助力
Limited availability
百度 这是一场遭遇战,双方此前从未在正式比赛中有过交手。
This feature is not Baseline because it does not work in some of the most widely-used browsers.
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
.
Value
A string.
Examples
If a shared worker is created using a constructor with a name
option:
js
const myWorker = new SharedWorker("worker.js", { name: "mySharedWorker" });
the SharedWorkerGlobalScope
will now have a name of "mySharedWorker",
returnable by running
js
self.name;
from inside the shared worker.
Specifications
Specification |
---|
HTML # dom-sharedworkerglobalscope-name-dev |