码迷,mamicode.com
首页 > 其他好文 > 详细

for each

时间:2019-02-26 01:05:19      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:版本   支持   ons   rip   兼容   ice   元素   div   原型   

<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

标签:版本   支持   ons   rip   兼容   ice   元素   div   原型   

原文地址:https://www.cnblogs.com/lujieting/p/10434653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!