XML DOM appendChild() 方法
Element 對象
定義和用法
appendChild() 方法在指定元素節(jié)點的最后一個子節(jié)點后添加節(jié)點。
該方法返回新的子節(jié)點。
語法
參數(shù) | 描述 |
node | 必需。要追加的節(jié)點。 |
實例 1
下面的代碼片段使用 loadXMLDoc() 把 "books.xml" 載入 xmlDoc 中,創(chuàng)建節(jié)點(<edition>),并把它添加到第一個 <book> 元素的最后一個子節(jié)點的后面:
實例
xmlDoc=loadXMLDoc("books.xml");
newel=xmlDoc.createElement("edition");
x=xmlDoc.getElementsByTagName("book")[0];
x.appendChild(newel);
document.write(x.getElementsByTagName("edition")[0].nodeName);
輸出:
edition
嘗試一下 ?
實例 2
下面的代碼片段使用 loadXMLDoc() 把 "books.xml" 載入 xmlDoc 中,并向所有的 <book> 元素追加一個新的節(jié)點:
實例
xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName('book');
var newel,newtext;
for (i=0;i<x.length;i++)
{
newel=xmlDoc.createElement('edition');
newtext=xmlDoc.createTextNode('First');
newel.appendChild(newtext);
x[i].appendChild(newel);
}
//Output all titles and editions
y=xmlDoc.getElementsByTagName("title");
z=xmlDoc.getElementsByTagName("edition");
for (i=0;i<y.length;i++)
{
document.write(y[i].childNodes[0].nodeValue);
document.write(" - Edition: ");
document.write(z[i].childNodes[0].nodeValue);
document.write("
");
}
輸出:
Everyday Italian - Edition: First
Harry Potter - Edition: First
XQuery Kick Start - Edition: First
Learning XML - Edition: First
嘗試一下 ?
Element 對象
更多建議: