jquery中$.each()与$().each()使用实例

1.在对数组操作的时候$.each()用的比较多

//[{name:"limeng",email:"xfjylimeng"},{name:"hehe",email:"xfjylimeng"}]是数组对象

$.each([{name:"xym",email:"123456@qq.com"},{name:"zhima",email:"hill@qq.com"}],function(i,n)
{
    alert("索引:"+i+"对应值为:"+n.name);//其中表示索引,n表示对象;
});

输出 0 xym 1 zhima

var arr1 = [ "one", "two", "three", "four", "five" ];
$.each(arr1, function(index){//index表示索引
   // alert(this); //输出 one two three four five
    alert(index); //输出0  1 2 3 4
    alert(arr1[index]);//输出 one two three four five

});

 

 

var arr2 = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
$.each(arr2, function(i, item){
    alert(item[2]);//输出3 6 9
   // alert(item[i]);//item表示数组 i 表示索引 输出1 5 9
});
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script>
    hi();
    function hi() {
        var obj = {one: 1, two: 2, three: 3, four: 4, five: 5};
        $.each(obj, function (key, val) {
            alert(obj[key]);
        })
    }

</script>

输出 1 2 3  4 5 相当于循环输出属性的值

function add(a,b){
alert(a+b);}

function sub(a,b){
alert(a-b);}

add.call(sub,3,1);

这个会输出add方法  输出4

 

2.在对DOM操作的时候$().each()

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script>
    $('li').each(function (i) {
        alert(i);
        alert($(this).text());//弹框分别输出 0 苹果 1 橘子 2 香蕉 其实function(i)中表示遍历的索引

    })
</script>

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

芝麻开门2015

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值