w3pop.com :: 网络学院 :: XML DOM :: localName 属性
The localName property returns the local name (element name) of the selected element
localName属性的作用是:返回已选元素的本地名称(元素名称)。
If the selected node is not an element or attribute, this property returns NULL.
如果已选节点不是一个元素或者属性,那么这个属性将返回NULL。
elementNode.localName |
In all examples, we will use the XML file books.xml, and the JavaScript function loadXMLDoc().
在所有案例中,我们将使用“book.xml”文件以及JavaScript 函数“loadXMLDoc()”。
The following code fragment gets the local name from the first <book> element in "books.xml":
下面的代码片断将获取“books.xml”文件中的第一个<book>元素的本地名称:
xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName("book")[0]
document.write(x.localName);
|
The output of the code above will be:
上述代码将输出下面的结果:
book |
The following code fragment gets the local name from the last child node in "books.xml":
下面的代码片断将获取“books.xml”文件中的最后一个子节点的本地名称:
//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;
}
xmlDoc=loadXMLDoc("books.xml");
var x=xmlDoc.documentElement; var lastNode=get_lastchild(x); document.write(lastNode.localName); |
The output of the code above will be:
上述代码将输出下面的结果:
book |
localName - Get the local name of a node
localName - 获取节点的本地名称
localName - Get the local name of the last child node
localName - 获取最后一个子节点的名称
评论 (0)
All