XML DOM - 添加节点



在本章中,我们将讨论将节点添加到现有元素的方法。它提供了一种方法来:

  • 在现有子节点之前或之后附加新的子节点

  • 在文本节点中插入数据

  • 添加属性节点

以下方法可用于将节点添加到 DOM 中的元素:

  • appendChild()
  • insertBefore()
  • insertData()

appendChild()

appendChild() 方法在现有子节点之后添加新的子节点。

语法

appendChild() 方法的语法如下:

Node appendChild(Node newChild) throws DOMException

其中,

  • newChild - 要添加的节点

  • 此方法返回添加的节点

示例

以下示例 (appendchildnode_example.htm) 将 XML 文档 (node.xml) 解析为 XML DOM 对象,并将新的子节点PhoneNo附加到元素<FirstName>。

<!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");

         create_e = xmlDoc.createElement("PhoneNo");

         x = xmlDoc.getElementsByTagName("FirstName")[0];
         x.appendChild(create_e);

         document.write(x.getElementsByTagName("PhoneNo")[0].nodeName);
      </script>
   </body>
</html>

在上面的示例中 -

  • 使用 createElement() 方法创建了一个新的元素PhoneNo

  • 使用 appendChild() 方法将新的元素PhoneNo添加到元素FirstName

执行

将此文件保存为服务器路径上的appendchildnode_example.htm(此文件和 node.xml 应位于服务器上的同一路径)。在输出中,我们将属性值获取为PhoneNo

insertBefore()

insertBefore() 方法在指定的子节点之前插入新的子节点。

语法

insertBefore() 方法的语法如下:

Node insertBefore(Node newChild, Node refChild) throws DOMException

其中,

  • newChild - 要插入的节点

  • refChild - 参考节点,即必须在该节点之前插入新节点的节点。

  • 此方法返回正在插入的节点

示例

以下示例 (insertnodebefore_example.htm) 将 XML 文档 (node.xml) 解析为 XML DOM 对象,并在指定的元素<Email>之前插入新的子节点Email

<!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");

         create_e = xmlDoc.createElement("Email");

         x = xmlDoc.documentElement;
         y = xmlDoc.getElementsByTagName("Email");

         document.write("No of Email elements before inserting was: " + y.length);
         document.write("<br>");
         x.insertBefore(create_e,y[3]);

         y=xmlDoc.getElementsByTagName("Email");
         document.write("No of Email elements after inserting is: " + y.length);
      </script>
   </body>
</html>

在上面的示例中 -

  • 使用 createElement() 方法创建了一个新的元素Email

  • 使用 insertBefore() 方法在元素Email之前添加了新的元素Email

  • y.length给出在新的元素之前和之后添加的元素总数。

执行

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

No of Email elements before inserting was: 3
No of Email elements after inserting is: 4 

insertData()

insertData() 方法在指定的 16 位单元偏移量处插入字符串。

语法

insertData() 的语法如下:

void insertData(int offset, java.lang.String arg) throws DOMException

其中,

  • offset - 要插入的字符偏移量。

  • arg - 要插入数据的关键字。它将偏移量和字符串这两个参数括在括号内,用逗号分隔。

示例

以下示例 (addtext_example.htm) 将 XML 文档("node.xml")解析为 XML DOM 对象,并在指定位置将新的数据MiddleName插入到元素<FirstName>。

<!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("FirstName")[0].childNodes[0];
        document.write(x.nodeValue);
        x.insertData(6,"MiddleName");
        document.write("<br>");
        document.write(x.nodeValue);

     </script>
   </body>
</html>
  • x.insertData(6,"MiddleName"); - 在这里,x保存指定子名称的名称,即<FirstName>。然后,我们从位置 6 开始将数据"MiddleName"插入到此文本节点中。

执行

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

Tanmay
TanmayMiddleName 
广告