4.3 節點查找(Traversing)
以這個 html 為例:
往內層找
.querySelector() 與 .querySelectorAll()
往內層找元素,回傳的會是 NodeList,可以使用 .forEach()
函式。
例:
.children
找到第一層的子元素。回傳的會是 HTMLCollection,無法使用 .forEach()
函式。
例:
.firstElementChild 與 .lastElementChild
找到第一個子元素、找到最後一個子元素。
例:
找第 n 個子元素
透過 querySelector 往內層找,以及使用 :nth-child()
:
例:
往同層找
.previousElementSibling
找到同層的前一個元素。
例:
.nextElementSibling
找到同層的下一個元素。
例:
往父層找
.parentElement
找到最近的父元素。
例:
.closest()
往父層找,找到指定的元素。
例:
Last updated