从同一文档的下一个 iframe 引用 iframe

发布于 2024-11-19 15:21:00 字数 151 浏览 3 评论 0原文

我有两个来自同一域的 iframe(iframe1iframe2),它们托管在来自不同域的文档中。我如何从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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北笙凉宸 2024-11-26 15:21:00

我自己来回答,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 use sessionStorage for communication between the iframes from the same origin.

https://developer.mozilla.org/en/DOM/Storage

飘过的浮云 2024-11-26 15:21:00

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文