The DOMNode interface is an abstract base class upon which many other DOM API objects are based, thus letting those object types to 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 Document, Element, and DocumentFragment.
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.
Instance properties
In addition to the properties below, Node inherits properties from its parent, EventTarget.
Returns a live NodeList containing all the children of this node (including elements, text and comments). NodeList being live means that if the children of the Node change, the NodeList object is automatically updated.
A boolean indicating whether or not the Node is connected (directly or indirectly) to the context object, e.g. the Document object in the case of the normal DOM, or the ShadowRoot in the case of a shadow DOM.
Returns a string containing the name of the Node. The structure of the name will differ with the node type. E.g. An HTMLElement will contain the name of the corresponding tag, like 'audio' for an HTMLAudioElement, a Text node will have the '#text' string, or a Document node will have the '#document' string.
Returns a Node that is the parent of this node. If there is no such node, like if this node is the top of the tree or if doesn't participate in a tree, this property returns null.
Adds the specified 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.
Accepts a namespace URI as an argument and returns a boolean value with a value of true if the namespace is the default namespace on the given node or false if not.
Returns a string containing the prefix for a given namespace URI, if present, and null if not. When multiple prefixes are possible, the result is implementation-dependent.
Accepts a prefix and returns the namespace URI associated with it on the given node if found (and null if not). Supplying null for the prefix will return the default namespace.
Using this function is a single call. Here we empty the body of the document:
js
removeAllChildren(document.body);
An alternative could be to set the textContent to the empty string: document.body.textContent = "".
Recurse through child nodes
The following function recursively calls a callback function for each node contained by a root node (including the root itself):
js
functioneachNode(rootNode, callback){if(!callback){const nodes =[];eachNode(rootNode,(node)=>{
nodes.push(node);});return nodes;}if(callback(rootNode)===false){returnfalse;}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 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).
An optional callback function that receives a Node as its only argument. If omitted, eachNode returns an 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:
js
functiongrep(parentNode, pattern){let matches =[];let endScan =false;eachNode(parentNode,(node)=>{if(endScan){returnfalse;}// Ignore anything which isn't a text nodeif(node.nodeType !== Node.TEXT_NODE){return;}if(typeof pattern ==="string"&& node.textContent.includes(pattern)){
matches.push(node);}elseif(pattern.test(node.textContent)){if(!pattern.global){
endScan =true;
matches = node;}else{
matches.push(node);}}});return matches;}