ID 唯一标识页面上的一个元素。您描述的行为更像是 ID 中的“类”:document.querySelector("#counter-for-drinks .up-arrow")所以如果你想要一个不同的up-arrow,它是:document.querySelector("#counter-for-burgers .up-arrow")document.querySelector()是类似于 jQuery 的东西$(" ")。它还具有document.querySelectorAll()获取所有匹配元素的形式。