【发布时间】:2010-06-14 20:23:00
【问题描述】:
实际上,我有 iframe,其中包含一些重要内容,但问题是我如何将内容添加到 iframe 所在的页面。 谢谢
【问题讨论】:
-
查看答案中发布的链接
标签: javascript html
实际上,我有 iframe,其中包含一些重要内容,但问题是我如何将内容添加到 iframe 所在的页面。 谢谢
【问题讨论】:
标签: javascript html
你可以使用下面的函数来获取iframe的内容,而不是你可以在主页html中添加内容。
function getContentFromIframe(iFrameName)
{
var myIFrame = document.getElementById(iFrameName);
var content = myIFrame.contentWindow.document.body.innerHTML;
//Do whatever you need with the content
}
查看更多详情:http://www.roseindia.net/java/pass-value-example/pass-value-from-iframe-parent.shtml
【讨论】: