XML DOM parentNode 属性
❮ Node 节点对象
实例
以下代码片段将 "books.xml" 加载到 xmlDoc 中,并返回第一个<title>元素的父节点:
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 xmlDoc = xml.responseXML;
var x =
xmlDoc.getElementsByTagName("title")[0];
document.getElementById("demo").innerHTML =
"Parent
node: " + x.parentNode.nodeName;
}
上述代码的输出为:
Parent node: book
亲自试一试 »
定义和用法
parentNode 属性返回节点的父节点。
语法
nodeObject.parentNode
❮ Node 节点对象