XML DOM createElement() 메서드
정의와 사용법
createElement()
메서드는 요소 노드를 생성합니다.
이 메서드는 Element 객체를 반환합니다.
문법
createElement(이름)
파라미터 | 설명 |
---|---|
이름 | 문자열, 요소 노드의 이름을 정의합니다. |
예제
아래의 코드는 "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; }