The CharacterData
abstract interface represents a Node
object that contains characters. This is an abstract interface, meaning there aren't any object of type CharacterData
: it is implemented by other interfaces, like Text
, Comment
, or ProcessingInstruction
which aren't abstract.
Inherits properties from its parent, Node
, and implements the ChildNode
and NonDocumentTypeChildNode
interface.
CharacterData.data
DOMString
representing the textual data contained in this object.CharacterData.length
Read only
unsigned long
representing the size of the string contained in CharacterData.data
.NonDocumentTypeChildNode.nextElementSibling
Read only
Element
immediately following the specified one in its parent's children list, or null
if the specified element is the last one in the list.NonDocumentTypeChildNode.previousElementSibling
Read only
Element
immediately prior to the specified one in its parent's children list, or null
if the specified element is the first one in the list.Inherits methods from its parent, Node
, and implements the ChildNode
and NonDocumentTypeChildNode
interface.
CharacterData.appendData()
DOMString
to the CharacterData.data
string; when this method returns, data
contains the concatenated DOMString
.CharacterData.deleteData()
CharacterData.data
string; when this method returns, data
contains the shortened DOMString
.CharacterData.insertData()
CharacterData.data
string; when this method returns, data
contains the modified DOMString
.ChildNode.remove()
CharacterData.replaceData()
DOMString
; when this method returns, data
contains the modified DOMString
.CharacterData.substringData()
DOMString
containing the part of CharacterData.data
of the specified length and starting at the specified offset.Specification | Status | Comment |
---|---|---|
DOM The definition of 'CharacterData' in that specification. | Living Standard | Added implemention of the ChildNode and NonDocumentTypeChildNode interface. |
Document Object Model (DOM) Level 3 Core Specification The definition of 'CharacterData' in that specification. | Obsolete | No change from Document Object Model (DOM) Level 2 Core Specification. |
Document Object Model (DOM) Level 2 Core Specification The definition of 'CharacterData' in that specification. | Obsolete | No change from Document Object Model (DOM) Level 1 Specification. |
Document Object Model (DOM) Level 1 Specification The definition of 'CharacterData' in that specification. | Obsolete | Initial definition. |
Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 1.0 | (Yes) | 1.0 (1.7 or earlier) | 6 | (Yes) | (Yes) |
Implements ChildNode interface. | ? | (Yes) | 25.0 (25.0) [1] | No support | ? | No support |
Feature | Android | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | 1.0 (1.0) | (Yes) | (Yes) | (Yes) |
Implements ChildNode interface. | ? | (Yes) | 25.0 (25.0) [1] | No support | ? | No support |
[1] Two properties, nextElementSibling
and previousElementSibling
, have been moved to the NonDocumentTypeChildNode
interface, also implemented by CharacterData
.
© 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/CharacterData