웹 프로그래밍/JAVASCRIPT

텍스트 노드 값 변경 nodeValue 프로퍼티

웹 개발자의 비상 2010. 4. 2. 14:22

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