createElement
: 문서내의 요소를 만든다.
document.createElement(nodeName)
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 info = "nodeName: ";
info+= para.nodeName;
info+= " nodeType: ";
info+= para.nodeType;
alert(info);
}
결과 : 얼럿 nodeName: P nodeType: 1
'웹 프로그래밍 > JAVASCRIPT' 카테고리의 다른 글
텍스트 노드 생성 createTextNode 메소드 (0) | 2010.04.05 |
---|---|
새로만든 노드를 문서 트리 구조에 추가 appendChid 메소드 (0) | 2010.04.05 |
document.write, innerHTML 비추천 (0) | 2010.04.05 |
자바스크립트 갤러리 (0) | 2010.04.02 |
nodeName, getAttribute, nodeValue 를 통한 태그확인 (0) | 2010.04.02 |