THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

XML DOM replaceData() Method


Text Object Reference Text Object

Example

The following code fragment loads "books.xml" into xmlDoc and replaces the first eight characters from the text node in the first <title> element with "Easy":

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
��� if (xhttp.readyState == 4 && xhttp.status == 200) {
������� myFunction(xhttp);
��� }
};
xhttp.open("GET", "books.xml", true);
xhttp.send();

function myFunction(xml) {
    var xmlDoc = xml.responseXML;
    var x = xmlDoc.getElementsByTagName("title")[0].childNodes[0];
    document.getElementById("demo").innerHTML =
    x.nodeValue;

    x.replaceData(0,8, "Easy");
    document.getElementById("demo").innerHTML +=
    "<br>" + x.nodeValue;
}

Output:

Everyday Italian
Easy Italian
Try it yourself »

Definition and Usage

The replaceData() method replaces data in a text node.

Syntax

replaceData(start,length,string)

Parameter Description
start Required. Specifies where to begin replacing characters. Start value starts at zero
length Required. Specifies how many characters to replace
string Required. Specifies the string to insert

Text Object Reference Text Object