HTML DOM contentDocument ÊôÐÔ

¶¨ÒåºÍÓ÷¨

contentDocument ÊôÐÔÄܹ»ÒÔ HTML ¶ÔÏóÀ´·µ»Ø iframe ÖеÄÎĵµ¡£

¿ÉÒÔͨ¹ýËùÓбê×¼µÄ DOM ·½·¨À´´¦Àí±»·µ»ØµÄ¶ÔÏó¡£

Óï·¨

iframeObject.contentDocument

ʵÀý

ÏÂÃæµÄÀý×Ó¿É´ÓÔØÈë iframe µÄÎĵµµÄµÚÒ»¸ö <h2> ÔªËØÖÐÌáÈ¡Îı¾£º

<html>
<head>
<script type="text/javascript">
function getTextNode()
{
var x=document.getElementById("frame1").contentDocument;
alert(x.getElementsByTagName("h2")[0].childNodes[0].nodeValue);
}
</script>
</head>

<body>
<iframe src="frame_a.htm" id="frame1"></iframe>
<br /><br />
<input type="button" onclick="getTextNode()" value="Get text" />

</body>
</html>
VUE