XML DOM appendChild() 方法
Node 对象
定义和用法
appendChild() 方法把新的子节点追加到节点的子节点列表的末尾。
该方法返回新的子节点。
语法
appendChild(newchild)
参数 | 描述 |
---|---|
newchild | 要追加的节点。 |
实例
实例
xmlDoc=loadXMLDoc("books.xml");
newel=xmlDoc.createElement("edition");
x=xmlDoc.getElementsByTagName("book")[0];
x.appendChild(newel);
document.write(x.getElementsByTagName("edition")[0].nodeName);
newel=xmlDoc.createElement("edition");
x=xmlDoc.getElementsByTagName("book")[0];
x.appendChild(newel);
document.write(x.getElementsByTagName("edition")[0].nodeName);
输出:
edition
运行代码 »
运行代码
appendChild() - 向所有的 <book> 节点追加一个子节点
Node 对象其他扩展