码迷,mamicode.com
首页 > Web开发 > 详细

jquery-遍历each

时间:2015-10-21 13:56:35      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:

使用案例一

    $.ajax({
        url : webPath + "/clickCount",
        type : "POST",
        dataType : "json",
        data : {
            ids : ids
        },
        success : function(data) {
            var arr = data.list;
            $.each(arr, function(i, value) {
                for (var j = 0; j < news.length; j++) {
                    if (news[j].idStr == arr[i].newsID) {
                        $("#" + arr[i].newsID + "count").text(
                                arr[i].totalCommentCount);
                        $("#" + arr[i].newsID + "clickCount").text(
                                arr[i].weekClickCount);
                    }
                }
            });
        }
    });

 

$("button").click(function(){
  $("li").each(function(){
    alert($(this).text())
  });
});

each() 方法规定为每个匹配元素规定运行的函数。

提示:返回 false 可用于及早停止循环。

function(index,element)

必需。为每个匹配元素规定运行的函数。

  • index - 选择器的 index 位置
  • element - 当前的元素(也可使用 "this" 选择器)

 

jquery-遍历each

标签:

原文地址:http://www.cnblogs.com/hwaggLee/p/4897508.html

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