Node
is an interface from which a number of DOM API object types inherit. It allows those types to be treated similarly; for example, inheriting the same set of methods, or being tested in the same way.
The following interfaces all inherit from Node
’s methods and properties: Document
, Element
, Attr
, CharacterData
(which Text
, Comment
, and CDATASection
inherit), ProcessingInstruction
, DocumentFragment
, DocumentType
, Notation
, Entity
, EntityReference
These interfaces may return null
in certain cases where the methods and properties are not relevant. They may throw an exception — for example when adding children to a node type for which no children can exist.
Inherits properties from its parent, EventTarget
.[1]
Node.baseURI
Read only
DOMString
representing the base URL. The concept of base URL changes from one language to another; in HTML, it corresponds to the protocol, the domain name and the directory structure, that is all until the last '/'
.Node.baseURIObject
nsIURI
object representing the base URI for the element.Node.childNodes
Read only
NodeList
containing all the children of this node. NodeList
being live means that if the children of the Node
change, the NodeList
object is automatically updated.Node.firstChild
Read only
Node
representing the first direct child node of the node, or null
if the node has no child.Node.isConnected
Read only
Document
object in the case of the normal DOM, or the ShadowRoot
in the case of a shadow DOM.Node.lastChild
Read only
Node
representing the last direct child node of the node, or null
if the node has no child.Node.nextSibling
Read only
Node
representing the next node in the tree, or null
if there isn't such node.Node.nodeName
Read only
DOMString
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.Node.nodeType
Read only
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 |
ENTITY_REFERENCE_NODE
| 5 |
ENTITY_NODE
| 6 |
PROCESSING_INSTRUCTION_NODE | 7 |
COMMENT_NODE | 8 |
DOCUMENT_NODE | 9 |
DOCUMENT_TYPE_NODE | 10 |
DOCUMENT_FRAGMENT_NODE | 11 |
NOTATION_NODE
| 12 |
Node.nodeValue
Node.ownerDocument
Read only
Document
that this node belongs to. If the node is itself a document, returns null
.Node.parentNode
Read only
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
.Node.parentElement
Read only
Element
that is the parent of this node. If the node has no parent, or if that parent is not an Element
, this property returns null
.Node.previousSibling
Read only
Node
representing the previous node in the tree, or null
if there isn't such node.Node.textContent
Node.localName
Read only
DOMString
representing the local part of the qualified name of an element. Note: In Firefox 3.5 and earlier, the property upper-cases the local name for HTML elements (but not XHTML elements). In later versions, this does not happen, so the property is in lower case for both HTML and XHTML.
Node.namespaceURI
Read only
null
if it is no namespace. Note: In Firefox 3.5 and earlier, HTML elements are in no namespace. In later versions, HTML elements are in the http://www.w3.org/1999/xhtml/
namespace in both HTML and XML trees.
Node.nodePrincipal
Obsolete since Gecko 46
nsIPrincipal
representing the node principal.Node.prefix
Read only
DOMString
representing the namespace prefix of the node, or null
if no prefix is specified.Node.rootNode
Read only
Node
object representing the topmost node in the tree, or the current node if it's the topmost node in the tree. This has been replaced by Node.getRootNode()
.Inherits methods from its parent, EventTarget
.[1]
Node.appendChild()
Node.cloneNode()
Node
, and optionally, all of its contents. By default, it clones the content of the node.Node.compareDocumentPosition()
Node.contains()
Boolean
value indicating whether a node is a descendant of a given node or not.Node.getRootNode()
Node.hasChildNodes()
Boolean
indicating if the element has any child nodes, or not.Node.insertBefore()
Node
before the reference node as a child of a specified parent node.Node.isDefaultNamespace()
Boolean
with a value of true
if the namespace is the default namespace on the given node or false
if not.Node.isEqualNode()
Boolean
which indicates whether or not two nodes are of the same type and all their defining data points match.Node.isSameNode()
Boolean
value indicating whether or not the two nodes are the same (that is, they reference the same object).Node.lookupPrefix()
DOMString
containing the prefix for a given namespace URI, if present, and null
if not. When multiple prefixes are possible, the result is implementation-dependent.Node.lookupNamespaceURI()
null
if not). Supplying null
for the prefix will return the default namespace.Node.normalize()
Node.removeChild()
Node.replaceChild()
Node
of the current one with the second one given in parameter.Node.getFeature()
Node.getUserData()
DOMUserData
from the node.Node.hasAttributes()
Boolean
indicating if the element has any attributes, or not.Node.isSupported()
Boolean
flag containing the result of a test whether the DOM implementation implements a specific feature and this feature is supported by the specific node.Node.setUserData()
DOMUserData
to the node.Element.prototype.removeAll = function () { while (this.firstChild) { this.removeChild(this.firstChild); } return this; };
/* ... an alternative to document.body.innerHTML = "" ... */ document.body.removeAll();
The following function calls a function recursively for each node contained by a root node (including the root itself):
function eachNode(rootNode, callback){ if(!callback){ var nodes = []; eachNode(rootNode, function(node){ nodes.push(node); }); return nodes; } if(false === callback(rootNode)) return false; if(rootNode.hasChildNodes()){ var nodes = rootNode.childNodes; for(var i = 0, l = nodes.length; i < l; ++i) if(false === eachNode(nodes[i], callback)) return; } }
eachNode(rootNode, callback);
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 therein.
If callback
is provided, and it returns Boolean
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 that contains a certain string).
rootNode
Node
object whose descendants will be recursed through.callback
Node
as its only argument. If omitted, eachNode
returns an Array
of every node contained within rootNode
(including the root itself).The following example prints the textContent
properties of each <span>
tag in a <div>
element named "box"
:
<div id="box"> <span>Foo</span> <span>Bar</span> <span>Baz</span> </div>
var box = document.getElementById("box"); eachNode(box, function(node){ if(null != node.textContent){ console.log(node.textContent); } });
The following strings will be displayed in the user's console:
"\n\t", "Foo", "\n\t", "Bar", "\n\t", "Baz"
Note: Whitespace forms part of a Text
node, meaning indentation and newlines form separate Text
between the Element
nodes.
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){ var matches = []; var endScan = false; eachNode(parentNode, function(node){ if(endScan) return false; // Ignore anything which isn't a text node if(node.nodeType !== Node.TEXT_NODE) return; if("string" === typeof pattern){ if(-1 !== node.textContent.indexOf(pattern)) matches.push(node); } else if(pattern.test(node.textContent)){ if(!pattern.global){ endScan = true; matches = node; } else matches.push(node); } }); return matches; }
For example, to find Text
nodes that contain typos:
var typos = ["teh", "adn", "btu", "adress", "youre", "msitakes"]; var pattern = new RegExp("\\b(" + typos.join("|") + ")\\b", "gi"); var mistakes = grep(document.body, pattern); console.log(mistakes);
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Node' in that specification. | Living Standard | Added the following methods: getRootNode()
|
DOM4 The definition of 'Node' in that specification. | Obsolete | Removed the following properties: attributes , namespaceURI , prefix , and localName .Removed the following methods: isSupported() , hasAttributes() , getFeature() , setUserData() , and getUserData() . |
Document Object Model (DOM) Level 3 Core Specification The definition of 'Node' in that specification. | Obsolete | The methods insertBefore() , replaceChild() , removeChild() , and appendChild() returns one more kind of error (NOT_SUPPORTED_ERR ) if called on a Document .The normalize() method has been modified so that Text node can also be normalized if the proper DOMConfiguration flag is set.Added the following methods: compareDocumentPosition() , isSameNode() , lookupPrefix() , isDefaultNamespace() , lookupNamespaceURI() , isEqualNode() , getFeature() , setUserData() , and getUserData(). Added the following properties: baseURI and textContent . |
Document Object Model (DOM) Level 2 Core Specification The definition of 'Node' in that specification. | Obsolete | The ownerDocument property was slightly modified so that DocumentFragment also returns null .Added the following properties: namespaceURI , prefix , and localName .Added the following methods: normalize() , isSupported() and hasAttributes() . |
Document Object Model (DOM) Level 1 Specification The definition of 'Node' in that specification. | Obsolete | Initial definition. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes
|
Yes | 1 | 9 | Yes
|
Yes
|
appendChild |
Yes | Yes | Yes | 9 | Yes | Yes |
baseURI |
Yes | 12 | ? | ? | ? | ? |
baseURIObject
|
? | ? | ? | ? | ? | ? |
childNodes |
Yes | 12 | 1 | Yes | Yes | Yes |
cloneNode |
Yes | Yes | Yes | Yes | Yes | Yes |
compareDocumentPosition |
Yes | Yes | 9 | 5
|
Yes | Yes |
contains |
Yes | Yes | Yes | 5
|
Yes | Yes |
firstChild |
Yes | 12 | 1 | Yes | Yes | Yes |
getFeature
|
No | ? | No | ? | ? | ? |
getRootNode |
54 | No | 53 | No | 41 | 10.1 |
getUserData
|
No | ? | 1 — 22 | ? | No | No |
hasAttributes
|
No | ? | No | ? | ? | ? |
hasChildNodes |
1 | Yes | Yes | 7 | Yes | Yes |
innerText |
4 | 12 | 45 | 10 | 9.6 | 3 |
insertBefore |
1 | Yes | 3 | 9 | Yes | Yes |
isConnected |
51 | ? | 53 | ? | 38 | 10.1 |
isDefaultNamespace |
Yes | ? | Yes | ? | ? | ? |
isEqualNode |
1 | 12 | 2 | 9 | Yes | Yes |
isSameNode |
Yes | ? | 48
|
? | ? | ? |
isSupported |
No | ? | 1 — 22 | ? | ? | ? |
lastChild |
Yes | 12 | 1 | Yes | Yes | Yes |
localName
|
? — 46
|
12 | 1 — 48
|
? | ? | ? |
lookupPrefix |
Yes | ? | Yes | ? | ? | ? |
lookupNamespaceURI |
Yes | ? | Yes | ? | ? | ? |
namespaceURI
|
? — 46
|
12 | 1 — 48
|
? | ? | ? |
nextSibling |
Yes | 12 | ? | ? | Yes | ? |
nodeName |
Yes | 12 | ? | ? | ? | ? |
nodePrincipal
|
? — 46
|
? | ? | ? | ? | ? |
nodeType |
Yes | 12 | ? | ? | Yes | ? |
nodeValue |
Yes | 12 | ? | ? | Yes | ? |
normalize |
Yes | ? | Yes | ? | ? | ? |
outerText |
No | ? | ? | ? | No | ? |
ownerDocument |
Yes | 12 | Yes
|
6
|
Yes | ? |
parentElement |
Yes | 12 | 9 | Yes
|
Yes | Yes |
parentNode |
Yes | 12 | 1 | Yes | Yes | Yes |
prefix
|
No | 12 | 1 — 48
|
Yes
|
No | Yes |
previousSibling |
Yes | 12 | ? | ? | Yes | ? |
removeChild
|
Yes | ? | Yes | ? | ? | ? |
replaceChild |
1 | Yes | 1 | 6 | 2 | Yes |
rootNode
|
No | ? | No | ? | No | ? |
setUserData
|
No | ? | 1 — 22 | ? | No | No |
textContent |
Yes | Yes | 1 | Yes | Yes | 3 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes
|
Yes
|
? | 4 | Yes
|
Yes
|
Yes |
appendChild |
Yes | Yes | Yes | Yes | Yes | Yes | ? |
baseURI |
Yes | Yes | ? | ? | ? | ? | Yes |
baseURIObject
|
? | ? | ? | ? | ? | ? | ? |
childNodes |
Yes | Yes | ? | 4 | Yes | Yes | Yes |
cloneNode |
Yes | Yes | Yes | Yes | Yes | Yes | ? |
compareDocumentPosition |
Yes | Yes | Yes | 9 | Yes | Yes | ? |
contains |
Yes | Yes | Yes | Yes | Yes | Yes | ? |
firstChild |
Yes | Yes | ? | 4 | Yes | Yes | Yes |
getFeature
|
No | No | ? | No | ? | ? | ? |
getRootNode |
54 | 54 | No | 53 | 41 | 10.1 | ? |
getUserData
|
No | No | ? | 4 — 22 | No | No | ? |
hasAttributes
|
No | No | ? | No | ? | ? | ? |
hasChildNodes |
Yes | Yes | Yes | Yes | Yes | Yes | ? |
innerText |
Yes | Yes | 12 | 45 | Yes | 4 | Yes |
insertBefore |
1 | 18 | Yes | Yes | Yes | Yes | ? |
isConnected |
51 | 51 | ? | 45 | 38 | 10.1 | 6.0 |
isDefaultNamespace |
Yes | Yes | ? | Yes | ? | ? | ? |
isEqualNode |
Yes | Yes | Yes | 4 | Yes | Yes | ? |
isSameNode |
Yes | Yes | ? | 48
|
? | ? | ? |
isSupported |
No | No | ? | 4 — 22 | ? | ? | ? |
lastChild |
Yes | Yes | ? | 45 | Yes | Yes | Yes |
localName
|
? — 46
|
? — 46
|
Yes | 45 | Yes | Yes | Yes |
lookupPrefix |
Yes | Yes | ? | Yes | ? | ? | ? |
lookupNamespaceURI |
Yes | Yes | ? | Yes | ? | ? | ? |
namespaceURI
|
? — 46
|
? — 46
|
Yes | 45 | Yes | Yes | Yes |
nextSibling |
Yes | Yes | ? | ? | Yes | ? | Yes |
nodeName |
Yes | Yes | ? | ? | ? | ? | Yes |
nodePrincipal
|
? — 46
|
? — 46
|
? | ? | ? | ? | Yes |
nodeType |
Yes | Yes | ? | ? | Yes | ? | Yes |
nodeValue |
Yes | Yes | ? | ? | Yes | ? | Yes |
normalize |
Yes | Yes | ? | Yes | ? | ? | ? |
outerText |
No | No | ? | ? | No | ? | No |
ownerDocument |
Yes | Yes | Yes | Yes
|
Yes | ? | Yes |
parentElement |
Yes | Yes | Yes | 9 | Yes | ? | Yes |
parentNode |
Yes | Yes | Yes | 4 | Yes | Yes | Yes |
prefix
|
No | No | Yes | 9 | No | ? | No |
previousSibling |
Yes | Yes | ? | ? | Yes | ? | Yes |
removeChild
|
Yes | Yes | ? | Yes | ? | ? | ? |
replaceChild |
1 | 18 | Yes | 4 | Yes | Yes | ? |
rootNode
|
No | No | ? | No | No | ? | No |
setUserData
|
No | No | ? | 4 — 22 | No | No | ? |
textContent |
Yes | Yes | Yes | 4 | Yes | ? | Yes |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Node