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