본문 바로가기

나의 FE피봇이야기/Javascript

[Javascript] 위아래 정보값 찾기

  • Hierarchy:
    • parentNode: The element's parent in the DOM tree.
    • childNodes: A collection of all child nodes (elements, text nodes, comments).
    • children: A collection of only child elements (not text nodes or comments).
    • previousSibling and nextSibling: References to siblings in the DOM.