Browser_DOM_Search
#
DOM SearchNode | Element |
---|---|
태그노드 + 텍스트노트 | 태그 노드 |
childNodes | children |
parentNode | parentElement |
previousSibling | previousElementSibling |
nextSibling | nextElementSibling |
firstChild | firstElementChild |
lastChild | lastElementChild |
<html>
=document.documentElement
<head>
=document.head
<body>
=document.body
#
자식 노드 탐색- 자식노드 (child node, children)
- 바로 아래의 자식 요소
- 후손 노드 (descendants)
- 중첩 관계에 있는 모든 요소
#
DOM 컬렉션 : NodeList- 배열이 아닌 iterable 유사 배열 객체 컬렉션이다.
- 읽기 전용
- DOM 을 변경하려면 메서드를 사용해야 한다.
for..of
으로 순회한다.for..in
은 모든 열거가능한 프로퍼티를 순회하여 불필요한 프로퍼티까지 순회하게 된다.node.hasChildNodes()
자식 노드의 존재 여부 확인
#
테이블 탐색table.rows
-><tr>
컬렉션table.caption
-><caption>
table.tHead
-><thead>
table.tFoot
-><tfoot>
table.tBodies
-><tbody>
컬렉션- 테이블에 최소 1개의
<tbody>
를 담고 있다.
- 테이블에 최소 1개의
<thead> <tfoot> <tbody>
는rows
프로퍼티를 지원함<tr>
의 프로퍼티tr.cells
-><td>
<th>
컬렉션tr.sectionRowIndex
-><tr>
의 thead / tbody / tfoot 안에서의 인덱스
<td>
<th>
프로퍼티td.cellIndex
-> td / th 가 속한<tr>
에서의 인덱스