继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

关于js中each的用法

远看寒山石径斜
关注TA
已关注
手记 268
粉丝 25
获赞 149


1.$(selector).each(function(index,element))

2.$.each(dataresource,function(index,element))

接下来就对这两个函数做深入的探讨:

1.$(selector).each(function(index,element))

作用:在dom处理上面用的较多

示例:

html部分文档

<ul id="each_id">


<li>Coffee</li>


<li>Soda</li>


<li>Milk</li>


</ul>

js遍历函数:

function traversalDOM(){


$("#each_id li").each(function(){


      alert($(this).text())


    });


}

输出结果:

    Coffee

    Soda

    Milk


2.$.each(dataresource,function(index,element))

作用:在数据处理上用的比较多

示例:

此处没有html代码,只有js代码,如下:

function traversalData(){


var jsonResourceList = '[{"id":"1","tagName":"apple"},{"id":"2","tagName":"orange"},{"id":"3","tagName":"banan

a"},{"id":"4","tagName":"watermelon"}]';


if(jsonResourceList.length >0){


$.each(JSON.parse(jsonResourceList), function(index, obj) {


    alert(obj.tagName);


});


}


}

输出结果:

    apple

    orange

    banan

    watermelon


3.最终结论:

在遍历DOM时,通常用$(selector).each(function(index,element))函数;

在遍历数据时,通常用$.each(dataresource,function(index,element))函数。


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP