JavaScript 参考手册
HTML DOM importNode() 方法
返回iframe中第一个 H1 元素
源代码:
点击运行 »
<button onclick="myFunction()">点我</button> <p id="demo">点击上面的按钮以获取和显示在iframe第一个H1元素的值:</p> <script> function myFunction() { var frame = document.getElementsByTagName("iframe")[0] var h = frame.contentWindow.document.getElementsByTagName("h1")[0]; var x = document.importNode(h, true); document.getElementById("demo").appendChild(x); }; </script> <iframe src="https://www.mifengjc.com" style="height:280px;width:420px;"></iframe> <p><strong>Note:</strong> IE 8 及更早的版本不支持importNote方法</p>
运行结果:
点击运行 »