JavaScript 遍历 document.querySelectorAll() 作者: Chuwen 时间: 2019-11-20 分类: JavaScript # 如果使用 `forEach` 遍历,则会报错,因为它返回的不是一个数组,而是 `NodeList` ``` document.querySelectorAll('input[type='selece']]').forEach(function() { }); ``` 我们可以通过一下方法来遍历 ``` const selects = document.querySelectorAll("input[name='select']"); [].forEach.call(selects, function(select) { console.log(select); }); ``` 标签: JavaScript