同域页面A

主页面发送的数据是:

代码:

const bc = new BroadcastChannel('zhangxinxu');
bc.onmessage = function (event) {
	output.textContent = event.data;
};