jQuery 遍历 - each() 方法

示例:

[pcsh lang="js" tab_size="4" message="" hl_lines="" provider="manual"]

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

[/pcsh]

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

语法

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

 

此处评论已关闭