JS类数组转数组(Array.prototype.slice.call(arrayLike,0))
欢迎访问我的个人博客 晓东的博客通过 Array.prototype.slice.call(arrayLike,0) 方法可以讲类数组转换为数组,方便在JS中进行操作什么是类数组?var nodeList=document.querySelectorAll("div");这个 nodeList 就是一个类数组。var nodeList2 = document.getElementById('ul1'