Easy Tutorial
❮ Index Dom Met Element Hasattribute ❯

XML DOM nodeValue Property



Definition and Usage

The nodeValue property sets or returns the value of a node, depending on its type.

Syntax


Example

The following code snippet uses loadXMLDoc() to load "books.xml" into xmlDoc and displays the node name, node value, and node type of the category attribute:

Example

xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName('book');

for(i=0;i<x.length;i++)
{
  document.write(x.item(i).attributes[0].nodeName);
  document.write(" = ");
  document.write(x.item(i).attributes[0].nodeValue);
  document.write(" (nodetype: " + x.item(i).attributes[0].nodeType + ")");
  document.write("<br>");
}

Output:


❮ Index Dom Met Element Hasattribute ❯