--- title: Node slug: Web/API/Node tags: - API - DOM - DOM Reference - Interface - NeedsTranslation - Node - Reference - TopicStub translation_of: Web/API/Node ---
A Node
is an interface from which a number of DOM types inherit, and allows these various types to be treated (or tested) similarly.
The following interfaces all inherit from Node
its methods and properties: {{domxref("Document")}}, {{domxref("Element")}}, {{domxref("CharacterData")}} (which {{domxref("Text")}}, {{domxref("Comment")}}, and {{domxref("CDATASection")}} inherit), {{domxref("ProcessingInstruction")}}, {{domxref("DocumentFragment")}}, {{domxref("DocumentType")}}, {{domxref("Notation")}}, {{domxref("Entity")}}, {{domxref("EntityReference")}}
These interfaces may return null in particular 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 parents {{domxref("EventTarget")}}.[1]
'/'
.Node
change, the {{domxref("NodeList")}} object is automatically updated.null
if the node has no child.null
if the node has no child.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. {{gecko_minversion_inline("1.9.2")}}
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 https://www.w3.org/1999/xhtml/
namespace in both HTML and XML trees. {{gecko_minversion_inline("1.9.2")}}
null
if there isn't such node.Node
. The structure of the name will differ with the name 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.unsigned short
representing the type of the node. Possible values are:
Name | Value |
---|---|
ELEMENT_NODE |
1 |
ATTRIBUTE_NODE {{deprecated_inline()}} |
2 |
TEXT_NODE |
3 |
CDATA_SECTION_NODE {{deprecated_inline()}} |
4 |
ENTITY_REFERENCE_NODE {{deprecated_inline()}} |
5 |
ENTITY_NODE {{deprecated_inline()}} |
6 |
PROCESSING_INSTRUCTION_NODE |
7 |
COMMENT_NODE |
8 |
DOCUMENT_NODE |
9 |
DOCUMENT_TYPE_NODE |
10 |
DOCUMENT_FRAGMENT_NODE |
11 |
NOTATION_NODE {{deprecated_inline()}} |
12 |
null
.null
.null
.null
if no prefix is specified.null
if there isn't such node.Inherits methods from its parent, {{domxref("EventTarget")}}.[1]
The following function recursively cycles all child nodes of a node and executes a callback function upon them (and upon the parent node itself).
function DOMComb (oParent, oCallback) { if (oParent.hasChildNodes()) { for (var oNode = oParent.firstChild; oNode; oNode = oNode.nextSibling) { DOMComb(oNode, oCallback); } } oCallback.call(oParent); }
DOMComb(parentNode, callbackFunction);
Recursively cycle all child nodes of parentNode
and parentNode
itself and execute the callbackFunction
upon them as this
objects.
parentNode
Node Object
).callbackFunction
Function
).The following example send to the console.log
the text content of the body:
function printContent () { if (this.nodeValue) { console.log(this.nodeValue); } } onload = function () { DOMComb(document.body, printContent); };
Element.prototype.removeAll = function () { while (this.firstChild) { this.removeChild(this.firstChild); } return this; };
/* ... an alternative to document.body.innerHTML = "" ... */ document.body.removeAll();
Specification | Status | Comment |
---|---|---|
{{SpecName('DOM WHATWG', '#interface-node', 'Node')}} | {{Spec2('DOM WHATWG')}} | Removed the following properties: attributes , namespaceURI , prefix , and localName .Removed the following methods: isSupported() , hasAttributes() , getFeature() , setUserData() , and getUserData() . |
{{SpecName('DOM3 Core', 'core.html#ID-1950641247', 'Node')}} | {{Spec2('DOM3 Core')}} | The methods insertBefore() , replaceChild() , removeChild() , and appendChild() returns one more kind of error (NOT_SUPPORTED_ERR ) if called on a {{domxref("Document")}}.The normalize() method has been modified so that {{domxref("Text")}} node can also be normalized if the proper {{domxref("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 . |
{{SpecName('DOM2 Core', 'core.html#ID-1950641247', 'Node')}} | {{Spec2('DOM2 Core')}} | The ownerDocument property was slightly modified so that {{domxref("DocumentFragment")}} also returns null .Added the following properties: namespaceURI , prefix , and localName .Added the following methods: normalize() , isSupported() and hasAttributes() . |
{{SpecName('DOM1', 'level-one-core.html#ID-1950641247', 'Node')}} | {{Spec2('DOM1')}} | Initial definition |
{{CompatibilityTable}}
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari | |
---|---|---|---|---|---|---|---|
Basic support | {{CompatVersionUnknown}}[1] | {{CompatVersionUnknown}} | {{CompatGeckoDesktop("1.0")}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}}[1] | {{CompatVersionUnknown}}[1] | |
getFeature() {{obsolete_inline}} |
{{CompatNo}} | {{CompatUnknown}} | {{CompatGeckoDesktop("1.0")}} {{CompatNo}}{{CompatGeckoDesktop("7.0")}} |
{{CompatUnknown}} | {{CompatNo}} | {{CompatNo}} | |
getUserData() , setUserData() and hasAttributes() {{deprecated_inline}} |
{{CompatNo}} | {{CompatUnknown}} | {{CompatGeckoDesktop("1.0")}} {{CompatNo}}{{CompatGeckoDesktop("22.0")}} |
{{CompatUnknown}} | {{CompatNo}} | {{CompatNo}} | |
isSameNode() |
{{CompatVersionUnknown}} | {{CompatUnknown}} | {{CompatGeckoDesktop("1.0")}} Removed in {{CompatGeckoDesktop("10")}} Returned in {{CompatGeckoDesktop("48")}} |
{{CompatUnknown}} | {{CompatNo}} | {{CompatNo}} | |
isSupported() {{obsolete_inline}} |
{{CompatNo}} | {{CompatUnknown}} | {{CompatGeckoDesktop("1.0")}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} |
attributes |
{{CompatNo}} | {{CompatUnknown}} | {{CompatGeckoDesktop("1.0")}} {{CompatNo}}{{CompatGeckoDesktop("22.0")}}[2] |
{{CompatNo}} | {{CompatNo}} | {{CompatNo}} | |
rootNode() |
{{CompatUnknown}} | {{CompatUnknown}} | CompatGeckoDesktop(48)}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | |
namespaceURI , localName , prefix {{obsolete_inline}} |
{{CompatVersionUnknown}} {{CompatNo}}46.0[3] |
{{CompatUnknown}} | {{CompatVersionUnknown}} {{CompatNo}}48.0[3] |
{{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | |
getRootNode |
{{CompatChrome(54.0)}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatOpera(41)}} | {{CompatUnknown}} |
Feature | Android | Android Webview | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|---|
Basic support | {{CompatUnknown}} | {{CompatVersionUnknown}}[1] | {{CompatVersionUnknown}} | {{CompatGeckoMobile("1.0")}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}}[1] | {{CompatVersionUnknown}}[1] | {{CompatVersionUnknown}}[1] |
getFeature() {{obsolete_inline}} |
{{CompatNo}} | {{CompatNo}} | {{CompatUnknown}} | {{CompatGeckoMobile("1.0")}} {{CompatNo}}{{CompatGeckoDesktop("7.0")}} |
{{CompatUnknown}} | {{CompatNo}} | {{CompatNo}} | {{CompatNo}} |
getUserData() , setUserData() and hasAttributes() {{deprecated_inline}} |
{{CompatNo}} | {{CompatNo}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatNo}} |
isSameNode() |
{{CompatUnknown}} | {{CompatVersionUnknown}} | {{CompatUnknown}} |
{{CompatGeckoDesktop("1.0")}} |
{{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatVersionUnknown}} |
isSupported() {{obsolete_inline}} |
{{CompatUnknown}} | {{CompatNo}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatNo}} |
attributes |
{{CompatUnknown}} | {{CompatNo}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatNo}} |
rootNode() |
{{CompatUnknown}} | {{CompatNo}} | {{CompatUnknown}} | {{CompatGeckoMobile(48)}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatNo}} |
namespaceURI , localName , prefix {{obsolete_inline}} |
{{CompatUnknown}} | {{CompatNo}} | {{CompatUnknown}} | {{CompatVersionUnknown}} {{CompatNo}}48.0[3] |
{{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatNo}} |
getRootNode() |
{{CompatNo}} | {{CompatChrome(54.0)}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatUnknown}} | {{CompatOperaMobile(41)}} | {{CompatUnknown}} | {{CompatChrome(54.0)}} |
[1] WebKit and old versions of Blink incorrectly do not make Node
inherit from {{domxref("EventTarget")}}.
[2] In Gecko 22.0 {{geckoRelease("22.0")}} the attributes
property was moved to {{domxref("Element")}}.
[3] The properties were moved to the {{domxref("Element")}} and {{domxref("Attr")}} APIs according to the DOM4 standard.