Készít egy új Text
node-ot. Ezt a metódust használhatod arra hogy escape-eld a HTML karaktereket a szövegből, mint pl "<" vagy "&"
Syntax
var textNode = document.createTextNode(text);
Példa
<!DOCTYPE html>
<html lang="en">
<head>
<title>createTextNode example</title>
<script>
function addTextNode(text) {
var newtext = document.createTextNode(text),
p1 = document.getElementById("p1");
p1.appendChild(newtext);
}
</script>
</head>
<body>
<button onclick="addTextNode('IGEN! ');">IGEN!</button>
<button onclick="addTextNode('NEM! ');">NEM!</button>
<button onclick="addTextNode('ESCAPE <strong>BOLD</strong> AND • ENTITIES! ');">ESCAPE <strong>BOLD</strong> AND • ENTITIES!</button>
<hr />
<p id="p1">First line of paragraph.</p>
</body>
</html>
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Document: createTextNode' in that specification. |
Living Standard |
Browser compatibility
BCD tables only load in the browser