Los últimos tutoriales de desarrollo web
 

XML DOM appendData() Method


<Objeto CDATA

Ejemplo

El siguiente fragmento de código cargas " books_cdata.xml " en xmlDoc y agrega texto a la primera <html> elemento:

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (xhttp.readyState == 4 && xhttp.status == 200) {
myFunction(xhttp);
}
};
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;
}

Salida:

Stunning!Wonderful!
Inténtalo tú mismo "

Definición y Uso

El appendData() método agrega datos al final de un nodo CDATA.

Sintaxis

CDATANode.appedData(string)

Parámetro Descripción
string Necesario. La cadena para agregar al nodo CDATA

<Objeto CDATA