웹 프로그래밍/JAVASCRIPT

새로만든 노드를 문서 트리 구조에 추가 appendChid 메소드

웹 개발자의 비상 2010. 4. 5. 20:41
appendChild

: 새로 만든 노드를 문서 트리 구조에 추가한다.
: parent 노드의 제일 마지막 요소로 추가된다.(부모 태그가 끝나기 바로전)

parent.appendChild(child)

ex)
//test.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 <title>Testing</title>
 <script type="text/javascript" src="example.js"></script>
</head>

<body>
<div id="testdiv">
</div>
</body>
</html>

//example.js
window.onload = function() {
 var para = document.createElement("p");
 var testdiv = document.getElementById("testdiv");
 testdiv.appendChild(para);
}

728x90