Metodo appendData() del DOM XML
Definizione e uso
appendData()
Il metodo aggiunge una stringa alla fine del nodo di testo.
Sintassi
textNode.appendData(string)
Parametro | Descrizione |
---|---|
string | Obbligatorio. La stringa da aggiungere al nodo di testo. |
Esempio
Il codice seguente carica "books.xml" in xmlDoc e aggiunge il testo al primo elemento <title>:
var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { myFunction(this); {} }; xhttp.open("GET", "books.xml", true); xhttp.send(); function myFunction(xml) { var xmlDoc = xml.responseXML; var x = xmlDoc.getElementsByTagName("title")[0].childNodes[0]; x.appendData(" Cooking"); document.getElementById("demo").innerHTML = x.data; {}