Firefox Tomorrow

web api instance property

Node: nodeValue property

View on MDN ↗

The nodeValue property of the Node interface returns or sets the value of the current node.

Value

A string containing the value of the current node, if any. For the document itself, nodeValue returns null. For text, comment, and CDATA nodes, nodeValue returns the content of the node. For attribute nodes, the value of the attribute is returned.

The following table shows the return values for different types of nodes.

NodeValue of nodeValue
CDATASectionContent of the CDATA section
CommentContent of the comment
Documentnull
DocumentFragmentnull
DocumentTypenull
Elementnull
NamedNodeMapnull
ProcessingInstructionEntire content excluding the target
TextContent of the text node

[!NOTE] When nodeValue is defined to be null, setting it has no effect.

Example

<div id="d1">Hello world</div>
<!-- Example of comment -->
<output id="result">Not calculated yet.</output>

and the following script:

let node = document.querySelector("body").firstChild;
let result = "Node names are:\n";
while (node) {
  result += `Value of ${node.nodeName}: ${node.nodeValue}\n`;
  node = node.nextSibling;
}

const output = document.getElementById("result");
output.innerText = result;
Interactive exampleOpen the canonical MDN source to run this embedded demo.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.