BroadcastChannel:name 属性

基线 2022

新可用

2022 年 3 月起,此功能在最新的设备和浏览器版本中均可使用。此功能可能在较旧的设备或浏览器中无法使用。

注意:此功能在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 表格仅在浏览器中加载

另请参阅