logo头像
Snippet 博客主题

H5 postmessage通讯

本文于573天之前发表,文中内容可能已经过时。

父窗口监听
IE:

window.attachEvent('message', function(e) {
    var msg = e.data;                    
}, false);

其它:

window.addEventListener('message', function(e) {
    var msg = e.data;                    
}, false);

子窗口发送消息:

window.parent.postMessage("hello word:", "*");