Metodo appendData() del DOM XML

Definizione e uso

appendData() Il metodo aggiunge dati alla fine del nodo CDATA.

Sintassi

CDATANode.appendData(string)
Parametro Descrizione
string Obbligatorio. La stringa da aggiungere al nodo CDATA.

Esempio

Il codice seguente carica "books_cdata.xml" nel xmlDoc e aggiunge il testo al primo elemento <html>:

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
   if (this.readyState == 4 && this.status == 200) {
       myFunction(this);
   }
};
xhttp.open("GET", "books_cdata.xml", true);
xhttp.send();
function myFunction(xml) {
    var xmlDoc = xml.responseXML;
    var x = xmlDoc.getElementsByTagName("html")[0].childNodes[0];
    x.appendData(" Wonderful!");
    document.getElementById("demo").innerHTML =
    x.data;
}

Prova tu stesso