Dokument: createTextNode() Methode
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Erstellt einen neuen Text
-Knoten. Diese Methode kann verwendet werden, um HTML-Zeichen zu maskieren.
Syntax
js
createTextNode(data)
Parameter
data
-
Ein String, der die Daten enthält, die in den Textknoten eingefügt werden sollen.
Rückgabewert
Ein Text
-Knoten.
Beispiele
html
<!doctype html>
<html lang="en">
<head>
<title>createTextNode example</title>
<script>
function addTextNode(text) {
const newText = document.createTextNode(text);
const p1 = document.getElementById("p1");
p1.appendChild(newText);
}
</script>
</head>
<body>
<button onclick="addTextNode('YES! ');">YES!</button>
<button onclick="addTextNode('NO! ');">NO!</button>
<button onclick="addTextNode('WE CAN! ');">WE CAN!</button>
<hr />
<p id="p1">First line of paragraph.</p>
</body>
</html>
Spezifikationen
Specification |
---|
DOM Standard # ref-for-dom-document-createtextnode① |
Browser-Kompatibilität
BCD tables only load in the browser