如何使用“window.parent.document”不同域的 iframe 之间
我有 JSP“A”和 JSP“B”,JSP“B”被配置为 JSP“A”中的 iframe,但两者位于不同的域中。当我尝试使用 jQuery $("#id_parent_element", window.parent.document)
通过 JSP“A”中包含的 id 访问元素时,权限被拒绝。有没有办法解决这个问题,而不必将两个页面放在同一个域中?
提前致谢。
I have the JSP "A" and JSP "B", and the JSP "B" is configured as iframe into the JSP "A", but both are in different domains. When I try to access an element by id contained in the JSP "A" using jQuery $("#id_parent_element", window.parent.document)
, I'm denied permission. There is some solution to this problem without having to put both pages in the same domain?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
跨域交互在浏览器中受到严格控制。但是,存在一些黑客行为。看看这个:http://softwareas.com/cross-domain-communication-with-iframes
Cross-domain interaction is heavily controlled in browsers. But, some hacks exist. Check this out: http://softwareas.com/cross-domain-communication-with-iframes
不,没有。
No, there isn't.