HTML DOM importNode() 方法

Document 对象参考手册 Document 对象

返回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>

尝试一下 »


定义和用法

importNode() 方法把一个节点从另一个文档复制到该文档以便应用。

imported 节点可以试试任何节点类型。

如果 第二个值设置为 true,那么还要复制该节点的所有子孙节点。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 importNode() 方法

注意: Internet explorer 8 及 IE 更早版本不支持该方法。


语法

document.importNode(node, deep)

参数

参数 类型 描述
deep Boolean 必须。如果为 true,还要递归复制 importedNode 节点的所有子孙节点。

返回值

类型 描述
Node object The imported node

技术细节

DOM 版本 Core Level 2 Document Object

Document 对象参考手册 Document 对象