<주석 개체
예
다음의 코드로드 " books_comment.xml 해당 xmldoc에"와 첫 번째 주석 요소에 텍스트를 추가합니다 :
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,
xmlDoc, txt;
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].appendData(" Special Offer");
txt += x[i].data + "<br>";
}
}
document.getElementById("demo").innerHTML = txt;
}
산출:
125 Simple and Delicious Recipes (Hardcover) Special Offer
»그것을 자신을 시도 확실히 우리 만 처리 주석 노드를 만들 경우 테스트의 예에서 우리는 루프와를 사용하여 위. 주석 노드는 8 노드 유형이 있습니다.
정의 및 사용
appendData() 메소드는 주석 노드의 끝에 데이터를 추가합니다.
통사론
commentNode.appedData(string)
매개 변수 | 기술 |
---|---|
string | 필요합니다. 문자열은 주석 노드에 추가 |
<주석 개체