<CDATA 개체
예
다음의 코드로드 " books_cdata.xml 최초의 CDATA 노드에 해당 xmldoc 및 삽입 데이터로" <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 | 필요합니다. 여기서 삽입 문자를 시작하는 방법을 지정합니다. 시작 값은 0에서 시작 |
string | 필요합니다. 삽입 할 데이터를 지정 |
<CDATA 개체