最新的Web开发教程
 

XML DOM replaceData() Method


<注释对象

下面的代码片段输出“ books_comment.xml ”载入xmlDoc和替换"Simple""Easy"之首的注释节点<book>元素:

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

function myFunction(xml) {
    var x, i, txt, xmlDoc;
    xmlDoc = xml.responseXML;
   txt = "";
    x = xmlDoc.getElementsByTagName("book")[0].childNodes;
    for (i = 0; i < x.length; i++) {
    // Process only comment nodes
        if (x[i].nodeType == 8) {
            x[i].replaceData(4, 6, "Easy");
            txt += x[i].data + "<br>";
        }
    }
    document.getElementById("demo").innerHTML = txt;
}

输出:

125 Easy and Delicious Recipes (Hardcover)
试一试»

在上面的例子中,我们使用一个循环和IF测试,以确保我们只处理注释节点。 注释节点的8节点类型。


定义和用法

replaceData()方法的注释节点代替数据。

句法

commentNode.replaceData(start,length,string)

参数 描述
start 需要。 规定在何处开始替换字符。 起始值从零开始
length 需要。 指定多少字符替换
string 需要。 指定要插入的字符串

<注释对象