同域页面B

主页面发送的数据是:

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