DOM - 节点对象方法 - cloneNode



cloneNode 方法用于创建重复节点,在派生类中重写时使用。它返回重复的节点。

语法

以下是 cloneNode 方法用法的语法。

nodeObject.cloneNode(boolean deep)

序号 参数及描述
1

deep

如果为 true,则递归克隆指定节点下的子树;如果为 false,则仅克隆节点本身(以及其属性,如果它是 Element)。

此方法返回重复的 Node

示例

node.xml 内容如下所示:

<?xml version = "1.0"?>
<Company>
   <Employee category = "Technical">
      <FirstName>Tanmay</FirstName>
      <LastName>Patil</LastName>
      <ContactNo>1234567890</ContactNo>
      <Email>[email protected]</Email>
   </Employee>
   
   <Employee category = "Non-Technical">
      <FirstName>Taniya</FirstName>
      <LastName>Mishra</LastName>
      <ContactNo>1234667898</ContactNo>
      <Email>[email protected]</Email>
   </Employee>
   
   <Employee category = "Management">
      <FirstName>Tanisha</FirstName>
      <LastName>Sharma</LastName>
      <ContactNo>1234562350</ContactNo>
      <Email>[email protected]</Email>
   </Employee>
</Company>

以下示例演示了 cloneNode 方法的用法:

<!DOCTYPE html>
<html>
   <head>
      <script>
         function loadXMLDoc(filename) {
            if (window.XMLHttpRequest) {
               xhttp = new XMLHttpRequest();
            } else // code for IE5 and IE6 {
               xhttp = new ActiveXObject("Microsoft.XMLHTTP");
            }
            xhttp.open("GET",filename,false);
            xhttp.send();
            return xhttp.responseXML;
         }
      </script>
   </head>
   <body>
      <script>
         xmlDoc = loadXMLDoc("/dom/node.xml");

         x = xmlDoc.getElementsByTagName('Employee')[0];
         clone_node = x.cloneNode(true);
         xmlDoc.documentElement.appendChild(clone_node);
         document.write("Following list has cloned node: ");
         document.write("<br>");
         y = xmlDoc.getElementsByTagName("LastName");
         for (i = 0; i < y.length; i ++)
         {
            document.write(y[i].childNodes[0].nodeValue);
            document.write("<br>");
         }
      </script>
   </body>
</html>

执行

将此文件保存为服务器路径上的 nodemethod_clonenode.htm(此文件和 node.xml 应位于服务器上的同一路径)。我们将得到如下所示的输出:

Following list has cloned node :
Patil
Mishra
Sharma
Patil

您会注意到第一个 LastName Patil 被克隆了。

dom_node_object.htm
广告