Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- array
- 클로저
- Promise
- video
- 이벤트 루프
- 문자열
- event
- json
- dom
- This
- 비동기
- Flex
- ios
- 고차함수
- object
- 모듈
- input
- 스크롤
- 애니메이션
- 이벤트
- Push
- scroll
- slice
- ajax
- async
- 이벤트 위임
- ES6
- 배열
- animation
- IntersectionObserver
Archives
- Today
- Total
FEDev Story
Text 객체 본문
소개
텍스트 객체는 텍스트 노드에 대한 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