Text
interface represents the textual content of Element
or Attr
. Text
that contains the element's text. However, if the element contains markup, it is parsed into information items and Text
nodes that form its children.Text
node for each block of text. Over time, more Text
nodes may be created as the document's content changes. The Node.normalize()
method merges adjacent Text
objects back into a single node for each block of text.Returns a string
containing the text of all Text
nodes logically adjacent to this Node
, concatenated in document order.
Promise<string>
Is a string
representing the textual data contained in this object.
Promise<string>
Returns an unsigned long
representing the size of the string contained in CharacterData.data
.
Promise<number>
Returns a string
representing the base URL of the document containing the Node
.
Promise<string>
Returns 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.
SuperNodeList
Returns a Node
representing the first direct child node of the node, or null
if the node has no child.
SuperNode
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.
Promise<boolean>
Returns a Node
representing the last direct child node of the node, or null
if the node has no child.
SuperNode
Returns a Node
representing the next node in the tree, or null
if there isn't such node.
SuperNode
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.
Promise<string>
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
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
Promise<number>
Returns / Sets the value of the current node.
Promise<string>
Returns the Document
that this node belongs to. If the node is itself a document, returns null
.
SuperDocument
Returns 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
.
SuperElement
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
.
SuperNode
Returns a Node
representing the previous node in the tree, or null
if there isn't such node.
SuperNode
Returns / Sets the textual content of an element and all its descendants.
Promise<string>
Returns the <slot>
the node is inserted in.
HTMLSlotElement
Returns the Element
immediately following this node in its parent's children list, or null
if there is no Element
in the list following this node.
SuperElement
Returns the Element
immediately prior to this node in its parent's children list, or null
if there is no Element
in the list prior to this node.
SuperElement
Breaks the node into two nodes at a specified offset.
number
. The index immediately before which to break the text node.Promise<SuperText>
Returns a string
containing the part of CharacterData.data
of the specified length and starting at the specified offset.
number
. Needs content.number
. Needs content.Promise<string>
Compares the position of the current node against another node in any other document.
Node
. The other Node
with which to compare the first node
’s document position.Promise<number>
Returns a boolean
value indicating whether or not a node is a descendant of the calling node.
Node
. Needs content.Promise<boolean>
Returns the context object's root which optionally includes the shadow root if it is available.
GetRootNodeOptions
. An object that sets options for getting the root node. The available options are: composed
: A `boolean` that indicates whether the shadow root should be returned (false
, the default), or a root node beyond shadow root (true
).SuperNode
Returns a boolean
indicating whether or not the element has any child nodes.
Promise<boolean>
Accepts 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.
string
. namespaceURI
is a string representing the namespace against which the element will be checked.Promise<boolean>
Returns a boolean
which indicates whether or not two nodes are of the same type and all their defining data points match.
Node
. otherNode
: The Node
to compare equality with.Promise<boolean>
Returns a boolean
value indicating whether or not the two nodes are the same (that is, they reference the same object).
Node
. otherNode
The Node
to test against.Promise<boolean>
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.
string
. The prefix to look for. If this parameter is null
, the method will return the default namespace URI, if any.Promise<string>
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.
string
. Needs content.Promise<string>
Clean up all the text nodes under this element (merge adjacent, remove empty).
Promise<void>
appendData() | deleteData() |
insertData() | replaceData() |
appendChild() | cloneNode() |
insertBefore() | removeChild() |
replaceChild() | addEventListener() |
dispatchEvent() | removeEventListener() |
after() | before() |
remove() | replaceWith() |