window.postMessage() 父子之间的窗口通信
A.html ,b.html A通过iframe嵌入B接收消息vue都可以在mounted中获取// A.html<body><button id="button">发送到B</button><iframe src="B.html" id='myframe'></iframe></body>&...
·
A.html ,b.html A通过iframe嵌入B
接收消息vue都可以在mounted中获取
// A.html
<body>
<button id="button">发送到B</button>
<iframe src="B.html" id='myframe'></iframe>
</body>
<script>
// A 向B传递信息
document.getElementById("button").contentWindow.postMessage("sendMessage", '*');
// A 接收B的信息
window.addEventListener("message", function(e){
if (e.data === 'reimbClose') {
// 事件
}
}, false);
<script>
B.html
<body>
<button id="button">发送A</button>
</body>
<script>
var button = document.getElementById('button');
// B 向A传递信息
button.addEventListener('click',function(){
window.parent.postMessage('reimbClose','*');
},false)
// B 接收A的信息
window.addEventListener('message', function(e) {
if(e.data === 'sendMessage'){//关闭窗口停止websocket
// 事件
}
})
</script>
更多推荐
已为社区贡献2条内容
所有评论(0)