jQuery 遍历 - each() 方法
定义和用法:each() 方法规定为每个匹配元素规定运行的函数。
提示:返回 false 可用于及早停止循环。
语法:$(selector).each(function(index,element))
参数:function(index,element)
描述:
function(index,element) - 必需。为每个匹配元素规定运行的函数。
index - 选择器的 index 位置
element - 当前的元素(也可使用 "this" 选择器)
例子:
$("button").click(function(){
$("li").each(function(){
alert($(this).text())
});
});
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。