let eleList = document.querySelectorAll('li')
for (let i = 0; i < eleList.length; i++) {
// 遍历操作
}

只要使用querySelectorAll方法即可获取所有找到的DOM元素

04-29 03:25