集册 jQuery 参考教程 jQuery 杂项 each() 方法

jQuery 杂项 each() 方法

Xebcnor     最近更新时间:2019-10-11 03:01:39

318

jQuery 杂项 each() 方法

jQuery 杂项方法 jQuery 杂项方法

实例

输出每个 <li> 元素的文本:

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

运行实例

定义和用法

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

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

语法

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

展开阅读全文