XML DOM createTextNode() 메서드

정의와 사용법

createTextNode() 메서드가 텍스트 노드를 생성합니다.

이 메서드는 Text 객체를 반환합니다.

문법

createTextNode(text)
매개변수 설명
text 문자열, 노드 텍스트 정의

예제

아래 코드는 "books.xml"을 xmlDoc에 로드하고, 각 <book> 요소에 텍스트 노드를 포함한 요소 노드를 추가합니다:

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
   if (this.readyState == 4 && this.status == 200) {
       myFunction(this);
   }
};
xhttp.open("GET", "books.xml", true);
xhttp.send();
function myFunction(xml) {
    var x, y, z, i, xLen, yLen, newEle, newText, xmlDoc, txt;
    xmlDoc = xml.responseXML;
    txt = "";
    x = xmlDoc.getElementsByTagName("book");
    xLen = x.length;
    // 요소 노드와 텍스트 노드 생성
    for (i = 0; i < xLen; i++) {
        newEle = xmlDoc.createElement("edition");
        newText = xmlDoc.createTextNode("first");
        newEle.appendChild(newText);
        x[i].appendChild(newEle);
    }
    // 모든 title과 edition 출력
    y = xmlDoc.getElementsByTagName("title");
    yLen = y.length
    z = xmlDoc.getElementsByTagName("edition");
    for (i = 0; i < yLen; i++) {
        txt += y[i].childNodes[0].nodeValue +
        " - Edition: " +
       z[i].childNodes[0].nodeValue + "<br>";
    }
    document.getElementById("demo").innerHTML = txt;
}

직접 테스트해 보세요