例
提醒每個文本<li>元素:
$("button").click(function(){
$("li").each(function(){
alert($(this).text())
});
});
試一試» 定義和用法
在each()方法指定一個函數為每一個匹配元素運行。
提示:返回false可用於提前停止循環。
句法
$(selector).each(function(index,element))
參數 | 描述 |
---|---|
function(index,element) | 需要。 該功能可對每個匹配的元素運行。
|