<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 | 需要。 規定在何處開始替換字符。 起始值從零開始 |
length | 需要。 指定多少字符替換 |
string | 需要。 指定要插入的字符串 |
<CDATA對象