FEDev Story

Text 객체 본문

Javascript/DOM

Text 객체

지구별72 2017. 2. 13. 20:57

소개

텍스트 객체는 텍스트 노드에 대한 DOM 객체로 CharcterData를 상속 받는다. 

아래는 텍스트 노드를 찾는 예제다. 주목할 것은 DOM에서는 공백이나 줄바꿈도 텍스트 노드라는 점이다.

<p id="target1"><span>Hello world</span></p>
<p id="target2">
    <span>Hello world</span>
</p>
<script>
var t1 = document.getElementById('target1').firstChild;
var t2 = document.getElementById('target2').firstChild;
 
console.log(t1.firstChild.nodeValue);
try{
    console.log(t2.firstChild.nodeValue);   
} catch(e){
    console.log(e);
}
console.log(t2.nextSibling.firstChild.nodeValue);
 
</script>
실행결과:
Hello world
TypeError {stack: (...), message: "Cannot read property 'nodeValue' of null"}
Hello world

주요기능

텍스트 노드의 값을 가져오는 API

  • data
  • nodeValue

조작

  • appendData()
  • deleteData()
  • insertData()
  • replaceData()
  • subStringData()

생성


'Javascript > DOM' 카테고리의 다른 글

Text 객체 - 조작 API  (0) 2017.02.13
Text 객체 - 값 API  (0) 2017.02.13
Document 객체  (0) 2017.02.12
Node 객체 - 문자열로 노드 제어  (0) 2017.02.12
Node 객체 - 노드 변경 API  (0) 2017.02.12
Comments