๐ DOM Node
HTML ํ๊ทธ๋ค๊ณผ, ๋ฌธ์์ด
( HTML Elements + Text )
์์ฑ (property)
node.parentNode: Node | null
node.firstChild: Node | null
node.lastChild: Node | null
// DOM Node๋ฅผ ๋ฐํํ๋ค
node.childNodes: NodeList
์ข ๋ฅ
- ELEMENT_NODE
- COMMENT_NODE
- DOCUMENT_NODE
๐ DOM Element
Dom Node ์ค์์, ELEMENT_NODE์ ํด๋นํ๋ ๋ถ๋ถ์ผ๋ก
HTML ํ๊ทธ๋ค์ ๊ฐ๋ฆฌํจ๋ค. ( ๋ฌธ์์ด์ element๊ฐ ์๋ )
์์ฑ (property)
node.parentElement: HTMLElement | null
// DOM Element๋ฅผ ๋ฐํํ๋ค.
node.children: HTMLCollection
๋ฐ์ํ