each()方法遍歷jQuery對(duì)象,為每個(gè)選定的元素執(zhí)行一次函數(shù)。
each()方法旨在使DOM循環(huán)結(jié)構(gòu)簡(jiǎn)潔明了且不易出錯(cuò)。
$(selector).each(function(index, element))
遍歷每個(gè)列表項(xiàng)并彈出每個(gè)元素的文本:
$("button").click(function(){ $("li").each(function(){ alert($(this).text()); }); });測(cè)試看看?/?
用于return false及終止each()循環(huán):
$("button").click(function(){ $("div").each(function(index, element){ $(element).css("backgroundColor", "yellow"); if($(this).is("#stop")){ $("span").text("div停止索引 #" + index); return false; } }); });測(cè)試看看?/?
參數(shù) | 描述 |
---|---|
function(index, element) | 指定要為每個(gè)選定元素執(zhí)行的函數(shù)
|