XML DOM localName 属性
❮ Element 元素对象
实例 1
以下代码片段将"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 xmlDoc = xml.responseXML;
var x = xmlDoc.getElementsByTagName("book")[0];
document.getElementById("demo").innerHTML =
x.localName;
}
上述代码的输出为:
book
亲自试一试 »
定义和用法
localName 属性返回被选元素的本地名称(元素名称)。
如果选定的节点不是元素或属性,则该属性返回 NULL。
语法
elementNode.localName
实例 2
以下代码片段将"books.xml"加载到 xmlDoc 中,并从最后一个子节点获取本地名称:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
myFunction(this);
}
};
xhttp.open("GET", "books.xml", true);
xhttp.send();
//
Check if the last node is an element node
function get_lastchild(n) {
var x = n.lastChild;
while (x.nodeType != 1) {
x = x.previousSibling;
}
return
x;
}
function myFunction(xml) {
var xmlDoc = xml.responseXML;
var x = xmlDoc.documentElement;
var lastNode =
get_lastchild(x);
document.getElementById("demo").innerHTML
=
lastNode.localName;
}
上述代码的输出为:
book
亲自试一试 »
❮ Element 元素对象