ajax 从 iframe 到我的文档
我试图让我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这适用于我的情况
This is working in my case