dom
DOM Event 전파 흐름

DOM 조회
Node.parentNode: HTMLElement
Node.firstChild: HTMLElement
Node.lastChild: HTMLElement
Node.hasChildNodes(): Boolean
Node.childNodes: NodeList
Node.children: NodeList
Node.previousSibling: HTMLElement
Node.nextSibling: HTMLElement
Node.previousElementSibling: HTMLElement
Node.nextElementSibling: HTMLElement
Node.nodeName: String
Node.nodeType: Number
Node.textContent: Strig
Node.innerHTML
Node.hasAttribute(attribute): Boolean
Node.getAttribute(attribute): String
Node.setAttribute(attribute, value): Undefined
Node.removeAttribute(attribute): Undefined
DOM 조작
Node.insertAdjacentHTML(position, string)
Last updated