<html>
<body>
<h1>Document 对象</h1>
<h2>importtNode() 方法</h2>
<iframe id="myFrame" src="/index.html" style="height:380px;width:100%;"></iframe>
<p>单击“导入”可导入 iframe(另一个文档)中的第一个 H1 元素。</p>
<button onclick="myFunction()">导入</button>
<script>
function myFunction() {
const frame = document.getElementById("myFrame");
const h1 = frame.contentWindow.document.getElementsByTagName("H1")[0];
const node = document.importNode(h1, true);
document.body.appendChild(node);
}
</script>
</body>
</html>