使用案例一
$.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) |
必需。为每个匹配元素规定运行的函数。
|
时间: 2024-10-25 05:19:17