1. 程式人生 > >jQuery中each()的用法

jQuery中each()的用法

each() 方法規定為每個匹配元素規定執行的函式。

提示:返回 false 可用於及早停止迴圈。

//輸出每個 li 元素的文字:
$("button").click(function(){
  $("li").each(function(){
    alert($(this).text())
  });
});

語法:

$(selector).each(function(index,element))

詳解:

function(index,element)
必需。為每個匹配元素規定執行的函式。

index - 選擇器的 index 位置
element - 當前的元素(也可使用 "this"
選擇器)