如何在iframe中插入html
大家好: 我需要在 iframe 中插入一个 html 字符串,如下所示:
....
var html = "<html><head><title>Titolo</title></head><body><p>body</p></body></html>"
jQuery('#popolaIframe').click(function() {
parent.$("#indexIframe")[0].documentElement.innerHTML = html;
});
有没有办法实现这一点?
Hallo all: I need to insert a html string in a iframe as shown below:
....
var html = "<html><head><title>Titolo</title></head><body><p>body</p></body></html>"
jQuery('#popolaIframe').click(function() {
parent.$("#indexIframe")[0].documentElement.innerHTML = html;
});
Is there a way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您发布的代码有效吗?如果没有,可能是因为浏览器出于安全原因不允许修改 iframe 内容。
Does that code you posted work? If not, it's probably because browsers disallow modification of iframe content for security reasons.
看起来您可以获得对正文的引用,所以我不明白为什么不:
http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_iframe_contentdocument
Looks like you can get a refrence to the body so I don't see why not:
http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_iframe_contentdocument
你已经失去了1级,你需要修改body的innerHtml,但不需要修改文档:
You have lost 1 level, you need modify innerHtml of body, but not document:
除非您
remove()
iframe 并使用“append(html)”,否则无法插入 iframe。您可以将其插入 iframes 体内,例如You cannot insert into an iframe unless you
remove()
the iframe and use 'append(html)'. You can insert it inside iframes body like或者,如果不确定父元素,您可以这样做:
至少这在我的情况下完成了工作:)
Alternitevely if not sure about the parent element you could do that:
At least this did the job in my case :)