postMessage 实现跨域消息传递 (JS)

Posted pyspang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postMessage 实现跨域消息传递 (JS)相关的知识,希望对你有一定的参考价值。

简单记录一下 postMessage ,证明我来过, 我搞过(frame框架), 以后还能有个解决方法好去度娘:

1、发送消息

postMessage(‘test‘, ‘http://localhost‘);

 

2、接收消息

    window.addEventListener(‘message‘, function (event) 
       console.log(event)
    , false);

 

以上是关于postMessage 实现跨域消息传递 (JS)的主要内容,如果未能解决你的问题,请参考以下文章

Html5 postMessage实现跨域消息传递

html5 postMessage解决跨域跨窗口消息传递

html5 postMessage解决跨域跨窗口消息传递

html5 postMessage解决跨域跨窗口消息传递

iframe可通过postMessage解决跨域跨窗口消息传递

使用postMessage在不同iframe间跨域传递消息