files/en-us/web/api/node/index.md
{{APIRef("DOM")}}
The {{Glossary("DOM")}} Node interface is an abstract base
class upon which many other DOM API objects are based, thus letting those object types
be used similarly and often interchangeably. As an abstract class, there is
no such thing as a plain Node object. All objects that implement
Node functionality are based on one of its subclasses. Most notable are
{{domxref("Document")}}, {{domxref("Element")}}, and {{domxref("DocumentFragment")}}.
In addition, every kind of DOM node is represented by an interface based on
Node. These include {{DOMxRef("Attr")}}, {{DOMxRef("CharacterData")}}
(which {{DOMxRef("Text")}}, {{DOMxRef("Comment")}}, {{DOMxRef("CDATASection")}} and
{{DOMxRef("ProcessingInstruction")}} are all based on), and {{DOMxRef("DocumentType")}}.
In some cases, a particular feature of the base Node interface may not
apply to one of its child interfaces; in that case, the inheriting node may
return null or throw an exception, depending on circumstances. For example,
attempting to add children to a node type that cannot have children will throw an
exception.
{{InheritanceDiagram}}
In addition to the properties below, Node inherits properties from its parent, {{DOMxRef("EventTarget")}}.
{{DOMxRef("Node.baseURI")}} {{ReadOnlyInline}}
Node.{{DOMxRef("Node.childNodes")}} {{ReadOnlyInline}}
Node change, the {{DOMxRef("NodeList")}} object is
automatically updated.{{DOMxRef("Node.firstChild")}} {{ReadOnlyInline}}
Node representing the first direct child node of the node,
or null if the node has no child.{{DOMxRef("Node.isConnected")}} {{ReadOnlyInline}}
{{DOMxRef("Node.lastChild")}} {{ReadOnlyInline}}
Node representing the last direct child node of the node,
or null if the node has no child.{{DOMxRef("Node.nextSibling")}} {{ReadOnlyInline}}
Node representing the next node in the tree, or
null if there isn't such node.{{DOMxRef("Node.nodeName")}} {{ReadOnlyInline}}
Node. The
structure of the name will differ with the node type. E.g. An
{{DOMxRef("HTMLElement")}} will contain the name of the corresponding tag, like
'AUDIO' for an {{DOMxRef("HTMLAudioElement")}}, a {{DOMxRef("Text")}}
node will have the '#text' string, or a {{DOMxRef("Document")}} node will
have the '#document' string.{{DOMxRef("Node.nodeType")}} {{ReadOnlyInline}}
: Returns an unsigned short representing the type of the node. Possible
values are:
| Name | Value |
|---|---|
ELEMENT_NODE | 1 |
ATTRIBUTE_NODE | 2 |
TEXT_NODE | 3 |
CDATA_SECTION_NODE | 4 |
PROCESSING_INSTRUCTION_NODE | 7 |
COMMENT_NODE | 8 |
DOCUMENT_NODE | 9 |
DOCUMENT_TYPE_NODE | 10 |
DOCUMENT_FRAGMENT_NODE | 11 |
{{DOMxRef("Node.nodeValue")}}
{{DOMxRef("Node.ownerDocument")}} {{ReadOnlyInline}}
null.{{DOMxRef("Node.parentNode")}} {{ReadOnlyInline}}
Node that is the parent of this node. If there is no such
node — for example, if this node is the top of the tree, or if it doesn't participate in a tree —
this property returns null.{{DOMxRef("Node.parentElement")}} {{ReadOnlyInline}}
null.{{DOMxRef("Node.previousSibling")}} {{ReadOnlyInline}}
Node representing the previous node in the tree, or
null if there isn't such node.{{DOMxRef("Node.textContent")}}
In addition to the methods below, Node inherits methods from its parent, {{DOMxRef("EventTarget")}}.
childNode argument as the last child to the current node.
If the argument referenced an existing node on the DOM tree, the node will be detached
from its current position and attached at the new position.Node, and optionally, all of its contents. By default, it
clones the content of the node.true or false value indicating whether or not a node is a
descendant of the calling node.Node before the reference node as a child of a specified
parent node.true if the namespace is the default namespace on the given node
or false if not.null if not. When multiple prefixes are possible, the
result is implementation-dependent.null if not). Supplying null for the prefix
will return the default namespace.Node of the current one with the second one given
in parameter.This function remove each first child of an element, until there are none left.
function removeAllChildren(element) {
while (element.firstChild) {
element.removeChild(element.firstChild);
}
}
Using this function is a single call. Here we empty the body of the document:
removeAllChildren(document.body);
An alternative could be to set the textContent to the empty string: document.body.textContent = "".
The following function recursively calls a callback function for each node contained by a root node (including the root itself):
function eachNode(rootNode, callback) {
if (!callback) {
const nodes = [];
eachNode(rootNode, (node) => {
nodes.push(node);
});
return nodes;
}
if (callback(rootNode) === false) {
return false;
}
if (rootNode.hasChildNodes()) {
for (const node of rootNode.childNodes) {
if (eachNode(node, callback) === false) {
return;
}
}
}
}
The function recursively calls a function for each descendant node of
rootNode (including the root itself).
If callback is omitted, the function returns an
{{jsxref("Array")}} instead, which contains rootNode and all
nodes contained within.
If callback is provided, and it returns
false when called, the current recursion level is aborted, and the function
resumes execution at the last parent's level. This can be used to abort loops once a
node has been found (such as searching for a text node which contains a certain string).
The function has two parameters:
rootNode
Node object whose descendants will be recursed through.callback {{optional_inline}}
Node as its only argument. If omitted, eachNode
returns an {{jsxref("Array")}} of every node contained within
rootNode (including the root itself).The following demonstrates a real-world use of the eachNode() function:
searching for text on a web-page.
We use a wrapper function named grep to do the searching:
function grep(parentNode, pattern) {
let matches = [];
let endScan = false;
eachNode(parentNode, (node) => {
if (endScan) {
return false;
}
// Ignore anything which isn't a text node
if (node.nodeType !== Node.TEXT_NODE) {
return;
}
if (typeof pattern === "string" && node.textContent.includes(pattern)) {
matches.push(node);
} else if (pattern.test(node.textContent)) {
if (!pattern.global) {
endScan = true;
matches = node;
} else {
matches.push(node);
}
}
});
return matches;
}
{{Specifications}}
{{Compat}}