<CDATA對象
例
下面的代碼片段輸出“ books_cdata.xml ”載入xmlDoc和數據插入第一的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.insertData(3, "Wonderful and ");
document.getElementById("demo").innerHTML =
x.data;
}
輸出:
Wonderful and Stunning!
試一試» 定義和用法
該insertData()方法將數據傳輸到CDATA節點。
句法
insertData(start,string)
參數 | 描述 |
---|---|
start | 需要。 指定從何處開始插入字符。 起始值從零開始 |
string | 需要。 指定的數據插入 |
<CDATA對象