package js.html
extends EventTarget
extended by Attr, CharacterData, DOMElement, Document, DocumentFragment, DocumentType
Available on js
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.
Documentation Node by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See also:
staticinlineread onlyATTRIBUTE_NODE:Int = 2staticinlineread onlyCDATA_SECTION_NODE:Int = 4staticinlineread onlyCOMMENT_NODE:Int = 8staticinlineread onlyDOCUMENT_FRAGMENT_NODE:Int = 11staticinlineread onlyDOCUMENT_NODE:Int = 9staticinlineread onlyDOCUMENT_POSITION_CONTAINED_BY:Int = 16staticinlineread onlyDOCUMENT_POSITION_CONTAINS:Int = 8staticinlineread onlyDOCUMENT_POSITION_DISCONNECTED:Int = 1staticinlineread onlyDOCUMENT_POSITION_FOLLOWING:Int = 4staticinlineread onlyDOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC:Int = 32staticinlineread onlyDOCUMENT_POSITION_PRECEDING:Int = 2staticinlineread onlyDOCUMENT_TYPE_NODE:Int = 10staticinlineread onlyELEMENT_NODE:Int = 1staticinlineread onlyENTITY_NODE:Int = 6staticinlineread onlyENTITY_REFERENCE_NODE:Int = 5staticinlineread onlyNOTATION_NODE:Int = 12staticinlineread onlyPROCESSING_INSTRUCTION_NODE:Int = 7staticinlineread onlyTEXT_NODE:Int = 3read onlybaseURI:StringReturns a 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 '/'.
read onlychildNodes:NodeListReturns a live 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.
read onlyfirstChild:NodeReturns a Node representing the first direct child node of the node, or null if the node has no child.
read onlyisConnected:BoolReturns 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.
read onlylastChild:NodeReturns a Node representing the last direct child node of the node, or null if the node has no child.
read onlynextSibling:NodeReturns a Node representing the next node in the tree, or null if there isn't such node.
read onlynodeName:StringReturns a 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.
read onlynodeType:IntReturns an unsigned short representing the type of the node. Possible values are:
ELEMENT_NODE | 1 |
ATTRIBUTE_NODE (deprecated)
| 2 |
TEXT_NODE | 3 |
CDATA_SECTION_NODE (deprecated)
| 4 |
ENTITY_REFERENCE_NODE (deprecated)
| 5 |
ENTITY_NODE (deprecated)
| 6 |
PROCESSING_INSTRUCTION_NODE | 7 |
COMMENT_NODE | 8 |
DOCUMENT_NODE | 9 |
DOCUMENT_TYPE_NODE | 10 |
DOCUMENT_FRAGMENT_NODE | 11 |
NOTATION_NODE (deprecated)
| 12 |
nodeValue:StringReturns / Sets the value of the current node
read onlyownerDocument:HTMLDocumentReturns the Document that this node belongs to. If the node is itself a document, returns null.
read onlyparentElement:ElementReturns an 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.
read onlyparentNode:NodeReturns 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.
read onlypreviousSibling:NodeReturns a Node representing the previous node in the tree, or null if there isn't such node.
textContent:StringReturns / Sets the textual content of an element and all its descendants.
appendChild(node:Node):NodeAdds 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.
@throws DOMError
cloneNode(deep:Bool = false):NodeClone a Node, and optionally, all of its contents. By default, it clones the content of the node.
Throws:
null |
DOMError |
|---|
compareDocumentPosition(other:Node):IntCompares the position of the current node against another node in any other document.
contains(other:Node):BoolReturns a Boolean value indicating whether a node is a descendant of a given node or not.
getRootNode(?options:Null<GetRootNodeOptions>):NodeReturns the context object's root which optionally includes the shadow root if it is available.
hasChildNodes():BoolReturns a Boolean indicating if the element has any child nodes, or not.
insertBefore(node:Node, child:Node):NodeInserts a Node before the reference node as a child of a specified parent node.
Throws:
null |
DOMError |
|---|
isDefaultNamespace(namespace:String):BoolAccepts a namespace URI as an argument and returns a Boolean with a value of true if the namespace is the default namespace on the given node or false if not.
isEqualNode(node:Node):BoolReturns a Boolean which indicates whether or not two nodes are of the same type and all their defining data points match.
isSameNode(node:Node):BoolReturns a Boolean value indicating whether or not the two nodes are the same (that is, they reference the same object).
lookupNamespaceURI(prefix:String):StringAccepts 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.
lookupPrefix(namespace:String):StringReturns a 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.
normalize():VoidClean up all the text nodes under this element (merge adjacent, remove empty).
removeChild(child:Node):NodeRemoves a child node from the current element, which must be a child of the current node.
Throws:
null |
DOMError |
|---|
replaceChild(node:Node, child:Node):NodeReplaces one child Node of the current one with the second one given in parameter.
Throws:
null |
DOMError |
|---|
© 2005–2020 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/js/html/Node.html