echo() 方法规定为每个匹配元素规定运行的函数。提示:返回 false 可用于及早停止循环。
$("li").each(function(){
alert($(this).text())
});
jQuery.each() 函数用于遍历指定的对象和数组。
$.each([52, 97], function(index, value) {
alert(index + ': ' + value);
});
index:序号,key。
value:值
echo() 方法规定为每个匹配元素规定运行的函数。提示:返回 false 可用于及早停止循环。
$("li").each(function(){
alert($(this).text())
});
jQuery.each() 函数用于遍历指定的对象和数组。
$.each([52, 97], function(index, value) {
alert(index + ': ' + value);
});
index:序号,key。
value:值
[...]echo()和jquery.each()区别和用法[...]