从同一文档的下一个 iframe 引用 iframe
我有两个来自同一域的 iframe(iframe1 和 iframe2),它们托管在来自不同域的文档中。我如何从iframe2引用iframe1,以便它们可以通过postMessage()进行通信。
I have two iframes (iframe1 and iframe2) from the same domain, which are hosted in a document from different domain. How can i refer iframe1 from iframe2, so that they can communicate through postMessage().
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我自己来回答,
postMessage()
是 iframe 与其父文档之间通信的理想选择。但就我而言,最好使用sessionStorage
在来自同一来源的 iframe 之间进行通信。https://developer.mozilla.org/en/DOM/Storage
I will answer it myself,
postMessage()
is ideal for communication between an iframe and its parent document. But in my case it would be better to usesessionStorage
for communication between the iframes from the same origin.https://developer.mozilla.org/en/DOM/Storage
HTML5 postMessage 方法的描述和使用示例非常详细记录。如果您使用 jQuery,您可能还会发现 以下插件 非常有用,因为它抽象了很多的必要代码。
The description and examples of usage of the HTML5 postMessage method are pretty well documented. If you are using jQuery you might also find the following plugin very useful as it abstracts much of the necessary code.