<주석 개체
예
다음의 코드로드 " books_comment.xml 해당 xmldoc로"를 얻는다 "(Hardcover) "문자열이 처음 주석 요소를 형성 :
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, y, 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) {
y = x[i].substringData(33, 11);
txt += y + "<br>";
}
}
document.getElementById("demo").innerHTML = txt;
}
산출:
(Hardcover)
»그것을 자신을 시도 확실히 우리 만 처리 주석 노드를 만들 경우 테스트의 예에서 우리는 루프와를 사용하여 위. 주석 노드는 8 노드 유형이 있습니다.
정의 및 사용
substringData() 메소드는 주석 노드에서 문자열을 가져옵니다.
통사론
substringData(start,length)
매개 변수 | 기술 |
---|---|
start | 필요합니다. 여기서 추출 문자를 시작하는 방법을 지정합니다. 시작 값은 0에서 시작 |
length | 필요합니다. 얼마나 많은 문자 추출을 지정합니다 |
<주석 개체