jQuery 遍历 - each() 方法

实例

输出每个 li 元素的文本:

  1. $("button").click(function(){
  2. $("li").each(function(){
  3. alert($(this).text())
  4. });
  5. });

定义和用法

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

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

语法

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