XML DOM replaceChild() 方法
❮ Element 元素对象
实例
以下代码片段将"books.xml" 加载到 xmlDoc 中,并替换第一个<book> 元素:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
myFunction(this);
}
};
xhttp.open("GET", "books.xml", true);
xhttp.send();
function myFunction(xml) {
var x, y, z, i, newNode, newTitle, newText,
xmlDoc, txt;
xmlDoc = xml.responseXML;
txt = "";
x = xmlDoc.documentElement;
// 创建书籍元素、标题元素和文本节点
newNode = xmlDoc.createElement("book");
newTitle = xmlDoc.createElement("title");
newText = xmlDoc.createTextNode("A
Notebook");
// 将文本节点添加到标题节点
newTitle.appendChild(newText);
// 将标题节点添加到书籍节点
newNode.appendChild(newTitle);
y = xmlDoc.getElementsByTagName("book")[0];
// 用新的书节点替换第一个书节点
x.replaceChild(newNode,
y);
z = xmlDoc.getElementsByTagName("title");
// 输出所有标题
for (i = 0; i < z.length; i++) {
txt += z[i].childNodes[0].nodeValue
+ "<br>";
}
document.getElementById("demo").innerHTML = txt;
}
上述代码的输出为:
A Notebook
Harry Potter
XQuery Kick Start
Learning XML
亲自试一试 »
定义和用法
replaceChild() 方法用其他节点替换某个子节点。
如成功,该方法返回被替换的节点,如失败,则返回 null。
语法
elementNode.replaceChild(new_node,old_node)
参数 | 描述 |
---|---|
new_node | 必需。规定新的节点。 |
old_node | 必需。规定要替换的子节点。 |
❮ Element 元素对象