BroadcastChannel:name 属性
注意:此功能在Web Workers中可用。
BroadcastChannel
接口的name
只读属性返回一个字符串,该字符串使用其名称唯一标识给定的通道。此名称在创建时传递给BroadcastChannel()
构造函数,因此它是只读的。
值
字符串。
示例
js
// Connect to a channel
const bc = new BroadcastChannel("test_channel");
// More operations (like postMessage, …)
// Log the channel name to the console
console.log(bc.name); // "test_channel"
// When done, disconnect from the channel
bc.close();
规范
规范 |
---|
HTML 标准 # dom-broadcastchannel-name-dev |
浏览器兼容性
BCD 表格仅在浏览器中加载
另请参阅
BroadcastChannel
,它所属的接口。