CharacterData: remove()-Methode

Die remove()-Methode von CharacterData entfernt den Text, der im Knoten enthalten ist.

Syntax

js
remove()

Parameter

Keine.

Beispiel

Verwendung von remove()

html
<span>Result: </span>A long string.
js
const span = document.querySelector("span");
const textNode = span.nextSibling;

textNode.remove(); // Removes the text

Spezifikationen

Specification
DOM Standard
# ref-for-dom-childnode-remove①

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch