怎样遍历NodeList对象
Posted aisowe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样遍历NodeList对象相关的知识,希望对你有一定的参考价值。
因为NodeList对象是一个类似数组的对象, 且它自带了一个 forEach() 方法, 因此可以使用 forEach() 遍历, 它的用法和 Array 里面的 forEach() 是完全一样的.
document.querySelectorAll(‘li‘).forEach((item,i,obj)=>console.log(i + " - " + item.textContent))
这里的item为当前元素, i为索引, obj为整个NodeList.
以上是关于怎样遍历NodeList对象的主要内容,如果未能解决你的问题,请参考以下文章