Extends: Node
See: https://developer.mozilla.org/en-US/docs/Web/API/CharacterData
- CharacterData
- new CharacterData(document, textContent)
- .data :
string
- .textContent :
string
- .nodeValue :
string
- .length :
number
- .contentEditable
- .isConnected :
boolean
- .parentNode :
Node
- .parentElement :
Element
- .firstChild :
Node
- .lastChild :
Node
- .previousSibling :
Node
- .nextSibling :
Node
- .firstElementChild :
Node
- .lastElementChild :
Node
- .previousElementSibling :
Node
- .nextElementSibling :
Node
- .childNodes :
NodeList
- .children :
HTMLCollection
- .ownerDocument
- .attributes
- .substringData(offset, count)
- .appendData(arg)
- .insertData(offset, arg)
- .deleteData(offset, count)
- .replaceData(offset, count, arg)
- .hasChildNodes()
- .cloneNode(deep)
- .appendChild(child)
- .insertBefore(child, before)
- .replaceChild(newChild, oldChild)
- .removeChild(child)
- .remove()
- .before(...nodes)
- .after(...nodes)
- .replaceWith(...nodes)
- .contains(node)
- .addEventListener(eventName, callback, [capture])
- .removeEventListener(eventName, callback, [capture])
- .dispatchEvent(event)
Creates an instance of CharacterData.
Param | Type |
---|---|
document | \* |
textContent | \* |
Overrides: textContent
Read only
Read only
Read only
characterData.parentNode : Node
Read only
characterData.parentElement : Element
Read only
characterData.firstChild : Node
Read only
characterData.lastChild : Node
Read only
characterData.previousSibling : Node
Read only
characterData.nextSibling : Node
Read only
characterData.firstElementChild : Node
Read only
characterData.lastElementChild : Node
Read only
characterData.previousElementSibling : Node
Read only
characterData.nextElementSibling : Node
Read only
characterData.childNodes : NodeList
Read only
characterData.children : HTMLCollection
Read only
Read only
Read only
Param | Type |
---|---|
offset | \* |
count | \* |
Param | Type |
---|---|
arg | string |
Param | Type |
---|---|
offset | number |
arg | string |
Param | Type |
---|---|
offset | number |
count | number |
Param | Type |
---|---|
offset | number |
count | number |
arg | string |
Param | Type |
---|---|
deep | boolean |
Param | Type |
---|---|
child | Node |
Param | Type |
---|---|
child | Node |
before | Node |
Param | Type |
---|---|
newChild | Node |
oldChild | Node |
Param | Type |
---|---|
child | Node |
Param | Type |
---|---|
...nodes | Array.<Node> |
Param | Type |
---|---|
...nodes | Array.<Node> |
Param | Type |
---|---|
...nodes | Array.<Node> |
Param | Type |
---|---|
node | Node |
Param | Type | Default |
---|---|---|
eventName | \* |
|
callback | \* |
|
[capture] | boolean |
false |
Param | Type | Default |
---|---|---|
eventName | \* |
|
callback | \* |
|
[capture] | boolean |
false |
Param | Type |
---|---|
event | \* |