XML DOM增加節點


在本章中,我們將討論已存在元素的節點。在這節中將學習新增(或插入)新節點 -

  • 在現有子節點之前或之後追加新的子節點
  • 在文字節點中插入資料
  • 新增屬性節點

以下方法可用於將節點元素新增/附加到DOM中 -

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

1. 使用appendChild()方法

方法appendChild()用於向現有子節點之後新增新的子節點。

語法

appendChild()方法的語法如下 -

Node appendChild(Node newChild) throws DOMException

其中,

  • newChild ? 要新增的新節點。
  • 此方法返回已新增的節點(Node)。

範例

以下範例(append_childnode.html)將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("/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中。

執行

執行上面範例程式碼,得到以下結果 -

2. insertBefore()方法

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

語法
insertBefore()方法的語法如下 -

Node insertBefore(Node newChild, Node refChild) throws DOMException

其中,

  • newChild - 要插入的節點
  • refChild - 是參照節點,即必須在其之前插入新節點的節點。
  • 此方法返回要插入的節點。

範例

以下範例(insert_nodebefore.html)將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("/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給出新元素之前和之後新增的元素總數。

執行上面範例程式碼,得到以下結果 -

3. insertData()方法

insertData()方法在指定的16位單位偏移處插入一個字串。

語法
insertData()的語法如下 -

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

其中,

  • offset - 是要插入的字元偏移量。
  • arg - 是插入資料的關鍵詞。它用括號括起兩個引數: offsetarg,用逗號分隔。

範例

以下範例(addtext.html)將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("/node.xml");

        x = xmlDoc.getElementsByTagName("FirstName")[0].childNodes[0];
        document.write(x.nodeValue);
        x.insertData(3,"MiddleName");
        document.write("<br>");
        document.write(x.nodeValue);

     </script>
   </body>
</html>
  • x.insertData(6,"MiddleName"); ? 這裡,x儲存指定子名稱的名稱,即<FirstName>。 然後,從位置3開始向該文字節點插入資料 - MiddleName

執行上面範例程式碼,得到以下結果 -