使用 JavaScript 的动态内容填充 IFRAME
我有一个 IFRAME,应该填充来自 JavaScript 的内容。如果内容位于服务器上,我所要做的就是:
function onIFrameFill() {
myIframe.location.href = "HelloWorld.html";
}
但是我拥有的内容是在客户端上生成的 HTML 页面,并表示为字符串(我对其影响不大)。如何以编程方式填充 iframe 的内容?
I have an IFRAME that should be filled with content from JavaScript. Had the content be on the server all I had to do is:
function onIFrameFill() {
myIframe.location.href = "HelloWorld.html";
}
But the content I have is a HTML page generated on the client and represented as a string (I have not much influence on it). How can I populate the content of the my iframe programatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我想你正在寻找类似的东西:
I think you're looking for something like:
尝试设置
但这不起作用。 Jeffery To 的解决方案有效。只是想补充一点.innerHTML
可能无法在旧浏览器中工作(阅读 IE 旧版本),因此您可以myIframe.contentWindow
使用文档 open()、write() & ; close() 如上所述。
Tried setting
but that does not work. Solution by Jeffery To works. Just want to add that.innerHTML
might not work in old browsers (read IE old versions) so you can domyIframe.contentWindow
then use the document open(), write() & close() as above.
与 Jeffry 类似,但使用
contentDocument
代替。Similar to Jeffry but using
contentDocument
instead..innerHTML
怎么样?What about
.innerHTML
?