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

jQuery 遍历 - each() 方法

时间:2015-04-07 15:27:13      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

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

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

语法:$(selector).each(function(index,element))

参数:function(index,element)
描述:
function(index,element) - 必需。为每个匹配元素规定运行的函数。
index - 选择器的 index 位置
element - 当前的元素(也可使用 "this" 选择器)

例子:

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

 

jQuery 遍历 - each() 方法

标签:

原文地址:http://www.cnblogs.com/cloudshadow/p/jquery-each.html

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