web api instance method
CharacterData: replaceData() method
The replaceData() method of the CharacterData interface removes a certain number of characters of the existing text in a given CharacterData node and replaces those characters with the text provided.
Syntax
replaceData(offset, count, data)
Parameters
offset- : The number of characters from the start of the data to insert at.
0is the first character of the string.
- : The number of characters from the start of the data to insert at.
count- : The number of characters to replace with the provided data.
data- : The data to insert.
Return value
None.
Exceptions
IndexSizeErrorDOMException- : Thrown if
offsetorcountis negative oroffsetis greater than the length of the contained data.
- : Thrown if
Example
<span>Result: </span>A long string.
const span = document.querySelector("span");
const textNode = span.nextSibling;
textNode.replaceData(2, 4, "replaced");
Interactive exampleOpen the canonical MDN source to run this embedded demo.
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.