所得到的元素是陣列,非單一元素,必須用遍歷才能返回相關結果
https://ithelp.ithome.com.tw/m/articles/10300654
const miniBtn = document.querySelectorAll(".mini-btn");
for (let i = 0; i < miniBtn.length; i++) {
miniBtn[i].addEventListener("click", (e) => {
e.preventDefault();
e.stopPropagation();
});
}
當選取 id
元素時:
document.querySelector('#title');
當選取 class
元素時:
document.querySelector('.title');