-

本章探讨在XML DOM中追加或添加节点。添加节点操作将节点附加到现有元素。它提供了一种手段:

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

appendChild()

方法appendChild()在现有childNode之后添加新的childNode。

用法

appendChild()方法的语法如下:

Node appendChild(Node newChild)抛出DOMException
appendChild Node newChild 抛出DOMException  

哪里:

以下示例(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>

在上面的例子中:

执行

将此文件作为appendchildnode_example.htm保存在服务器路径上(此文件和node.xml应与服务器中的路径相同)。在输出中,我们得到属性值,即PhoneNo

insertBefore()

insertBefore()方法在指定的childNode之前插入新的childNode。

用法

insertBefore()方法的语法如下:

Node insertBefore(Node newChild,Node refChild)抛出DOMException
insertBefore Node newChild Node refChild 抛出DOMException   

哪里:

以下示例(insertnodebefore_example.htm)将XML文档(“ node.xml)解析为XML DOM对象,并在指定的元素<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>

在上面的例子中:

执行

将此文件作为insertnodebefore_example.htm保存在服务器路径上(此文件和node.xml应与服务器中的路径相同)。在输出中,我们得到以下内容:

插入前的电子邮件元素数量为:3
插入后的电子邮件元素数量为:4 

insertData()

insertData()方法以指定的16位单位偏移量插入一个字符string。

用法

insertData()具有以下语法:

void insertData(int offset,java.lang.String arg)throws DOMException
insertData INT 偏移java的字符stringARG 抛出抛出:DOMException  

哪里:

以下示例(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>

执行

将此文件作为addtext_example.htm保存在服务器路径上(此文件和node.xml应与您的服务器中的路径相同)。在输出中,我们得到以下内容:

谭美
TanmayMiddleName