最新のWeb開発のチュートリアル
 

XML DOM replaceData() Method


<CDATAオブジェクト

次のコード・ロード」 books_cdata.xml 」XMLDOCへと置き換える"Stunning""Fantastic"最初のCDATAノードに<html>要素:

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.replaceData(3, 8, "Fantastic");
    document.getElementById("demo").innerHTML =
    x.data;
}

出力:

Fantastic!
»それを自分で試してみてください

定義と使用法

replaceData()メソッドは、CDATAノードにデータを置き換えます。

構文

CDATANode.replaceData(start,length,string)
パラメーター 説明
start 必須。 文字を置き換える開始する場所を指定します。 Start値はゼロから始まり
length 必須。 交換するためにどのように多くの文字を指定します
string 必須。 挿入するために文字列を指定します。

<CDATAオブジェクト