for each

Posted lujieting

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for each相关的知识,希望对你有一定的参考价值。

<script>
// IE 8 不支持
;[‘abc‘, ‘d‘, ‘efg‘].forEach(function (item, index) {
console.log(item)
})



// 遍历 jQuery 元素
$.each([‘abc‘, ‘d‘, ‘efg‘], function (index, item) {
console.log(item)
})

console.log($(‘div‘))

// 伪数组是对象
// 对象的原型链中没有 forEach
// 对象的原型链是 Object.prototype

// 这个 each 是 jQuery 提供的
// 这个 each 在 jQuery 的原型链中
$(‘div‘).each(function (index, item) {
console.log(item)
})

// jQuery 不是专门用来遍历 jQuery 元素的
// 1. 方便的遍历 jQuery 元素
// 2. 可以在不兼容 forEach 的低版本浏览器中使用 jQuery 的 each 方法

;[].slice.call($(‘div‘)).forEach(function (item) {console.log(item)})

</script>

以上是关于for each的主要内容,如果未能解决你的问题,请参考以下文章

循环 - forEach、for、for....of、for...in

for,for-each,for-in,for-of,map的比较

wx:for wx:for-item wx:for-index wx:for-key

如何确定for循环的次数!

如何确定for循环的次数

jQuery之for循环