父页面:
<iframe id="test-iframe" src=">
documentgetElementById(Iframe_Id)contentDocumentgetElementById(Element_Id) //适用于IE7以上
documentgetElementById(Iframe_Id)contentWindowdocumentgetElementById(Element_Id) //适用于IE6及火狐
参考 : >
同域或跨子域读写 *** 作
iframe
里的内容
父页面读写 *** 作子页面:
HTML
code<iframe
id="test-iframe"
name="test-iframe"
src="childhtml"
scrolling="no"
frameborder="0"></iframe>
<script>
windowonload
=
function
()
{
/
下面两种获取节点内容的方式都可以。
由于
IE6,
IE7
不支持
contentDocument
属性,所以此处用了通用的
windowframes["iframe
Name"]
or
windowframes[index]
/
var
d
=
windowframes["test-iframe"]document;
dgetElementsByTagName('h1')[0]innerHTML
=
'pp';
alert(dgetElementsByTagName('h1')[0]firstChilddata);
}
</script>
以上就是关于如何获取iframe标签中的内容全部的内容,包括:如何获取iframe标签中的内容、jquery easyui 怎样获得tab中的iframe、请问高手,html如何获取iframe中嵌套的页面元素值等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)