本文介绍了跨域在 iFrame 和父页面之间进行通信的可能方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请提出从 iFrame 触发父页面事件的可能技术.我尝试了 url Hashing 并使用 window.postMessage 技术,但没有任何成功.

Please suggest possible techniques to trigger events in parent page from an iFrame. I tried out url Hashing and using window.postMessage techniques but without any success.

推荐答案

easyXDM 正是为此目的而设计的.您可以在 http://easyxdm.net 上找到它,其中有很多示例.

easyXDM is designed for this exact purpose.You can find it at http://easyxdm.net and it has quite a few examples.

总而言之,它允许两个窗口使用字符串或 RPC 调用自由"地进行通信.

To sum it up, it allows two windows to communicate 'freely' using either strings or RPC calls.

参见 http://consumer.easyxdm.net/current/example/methods.html 用于其中一个 RPC 演示.

See http://consumer.easyxdm.net/current/example/methods.html for one of the RPC-demos.

这篇关于跨域在 iFrame 和父页面之间进行通信的可能方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-25 22:41