nodeValue
: 노드의 값을 가져오거나 설정
node.nodeValue
ex)
var str = document.getElementById("id명");
str.childNodes[0].nodeValue;
ex)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>가족 사진첩</title>
</head>
<body>
<p id="id01">안녕하세요 첫번째 노드값</p>
</body>
<script language="javascript">
var p_el = document.getElementById("id01");
alert(p_el.childNodes[0].nodeValue);
</script>
</html>
결과값 : 얼럿 안녕하세요 첫번째 노드값
728x90
'웹 프로그래밍 > JAVASCRIPT' 카테고리의 다른 글
firstChild 와 lastChild (0) | 2010.04.02 |
---|---|
요소의 확인 nodeName 프로퍼티 (0) | 2010.04.02 |
노드의 종료 값 반환 nodeType 프로퍼티 (0) | 2010.04.02 |
모든 요소의 자식 정보를 가지고 오는 childNodes 프로퍼티 (0) | 2010.04.02 |
이벤트 핸들러를 통한 기본동작 취소 return false; (0) | 2010.04.02 |