Deze vertaling is niet volledig. Help dit artikel te vertalen vanuit het Engels.
Maakt een nieuwe Text node aan.
Syntax
var text = document.createTextNode(data);
text
is een Text node.data
is een string met daarin de data bestemd voor de text node.
Voorbeeld
<!DOCTYPE html> <html lang="en"> <head> <title>createTextNode voorbeeld</title> <script> function addTextNode(text) { var newtext = document.createTextNode(text), p1 = document.getElementById("p1"); p1.appendChild(newtext); } </script> </head> <body> <button onclick="addTextNode('WIJ KUNNEN HET! ');">WIJ KUNNEN HET!</button> <button onclick="addTextNode('WERKELIJK! ');">WERKELIJK!</button> <button onclick="addTextNode('GEENSZINS! ');">GEENSZINS!</button> <hr /> <p id="p1">Eerste regel van de paragraaf.</p> </body> </html>
Specificaties
Specificatie | Status | Opmerking |
---|---|---|
Document Object Model (DOM) Level 3 Core Specification The definition of 'Document.createTextNode()' in that specification. |
Recommendation | No change |
Document Object Model (DOM) Level 2 Core Specification The definition of 'Document.createTextNode()' in that specification. |
Recommendation | Initial definition |
Browser compatibiliteit
Eigenschap | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | ? |
Eigenschap | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | ? | ? | ? | ? | ? |