<Objeto CDATA
Ejemplo
El siguiente fragmento de código cargas " books_cdata.xml " en xmlDoc y elimina algunos caracteres (the "<b>" tag) desde el nodo de texto del primer <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.deleteData(0, 3);
document.getElementById("demo").innerHTML =
x.data;
}
Salida:
Stunning!
Inténtalo tú mismo " Definición y Uso
El deleteData() método elimina los datos de un nodo CDATA.
Sintaxis
CDATANode.deleteData(start,length)
Parámetro | Descripción |
---|---|
start | Necesario. Especifica dónde comenzar a retirar los personajes. Valor inicial comienza en cero |
length | Necesario. Especifica el número de caracteres para borrar |
<Objeto CDATA