ajax 从 iframe 到我的文档

发布于 2024-11-07 03:25:09 字数 463 浏览 0 评论 0原文

我试图让我的 iframe ajax 脚本将 div 的内容更改为不是 iframe 的主文档。只是文件。

要发送到我的 iframe,我使用的

parent.frames[user].document.getElementById(box).innerHTML=xhr.responseText;

用户是 iframe 名称 我

如何从 iframe 将内容发送回我的文档?

UPD

我发现它不兼容 IE。它与其他浏览器一起使用此行

parent.document.getElementById(box).innerHTML=xhr.responseText;

请注意如何没有框架。

有趣的是,如果我在 div 上捕获事件,它会在所有浏览器中工作,但如果我尝试在表单按钮上捕获事件,则它不会!

im trying to get my iframe ajax script to change the content of a div into the main document wich is not an iframe. just the document.

To send into my iframe i use

parent.frames[user].document.getElementById(box).innerHTML=xhr.responseText;

user is the iframe name

How do i send stuff back to my document from the iframe??

UPD

I figured out that its not working with IE compatibility. Its working with other browsers with this line

parent.document.getElementById(box).innerHTML=xhr.responseText;

Notice how there is no frame.

The funy thing is that its woking in all browsers if i catch the event on a div but if i try to catch the event on a form button its not !!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

随风而去 2024-11-14 03:25:09
parent.document.getElementById(box).innerHTML=xhr.responseText;

这适用于我的情况

parent.document.getElementById(box).innerHTML=xhr.responseText;

This is working in my case

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