源代码 :
点击运行
<!DOCTYPE html> <html> <head> <script src="loadxmldoc.js"> </script> </head> <body> <script> xmlDoc=loadXMLDoc("books.xml"); x=xmlDoc.documentElement; // 创建新的 book 元素, title 元素及 node 节点 newNode=xmlDoc.createElement("book"); newTitle=xmlDoc.createElement("title"); newText=xmlDoc.createTextNode("A Notebook"); // 将 text 节点添加到 title 节点中 newTitle.appendChild(newText); // 将 title 节点添加到 book 节点中 newNode.appendChild(newTitle); y=xmlDoc.getElementsByTagName("book")[0] // 使用新节点替换第一个 book 节点 x.replaceChild(newNode,y); z=xmlDoc.getElementsByTagName("title"); for (i=0;i<z.length;i++) { document.write(z[i].childNodes[0].nodeValue); document.write("<br>"); } </script> </body> </html>
运行结果