XML DOM nodeName Property
Complete Document Object Reference
Definition and Usage
The nodeName property returns the name of a node, depending on its type.
Syntax
Example
The following code fragment loads "books.xml"
into xmlDoc using
loadXMLDoc(), displays the node name and node type of the
root node:
xmlDoc=loadXMLDoc("books.xml");
document.write("Nodename: " + xmlDoc.nodeName);
document.write(" (nodetype: " + xmlDoc.nodeType);
|
Output:
Nodename: #document (nodetype: 9)
|
Try-It-Yourself Demos
Display nodeName and nodeType of all elements
Display nodeName and nodeValue of all elements
Complete Document Object Reference
Learn XML with <oXygen/> XML Editor - Free Trial!
|
|
oXygen helps you learn to define,
edit, validate and transform XML documents. Supported technologies include XML Schema,
DTD, Relax NG, XSLT, XPath, XQuery, CSS.
Understand in no time how XSLT and XQuery work by using the intuitive oXygen debugger!
Do you have any XML related questions? Get free answers from the oXygen
XML forum
and from the video
demonstrations.
Download a FREE 30-day trial today!
|
|