jQuery如何跳出each循环
jQuery如何跳出each循环在一个function里有一个each,在each里某种条件 成立的话,就把这个function返回true或者false,但是在each代码块内不能使用break和continue,要实现break和continue的功能的话,要使用其它的方式
break----用return false;
continue --用return ture;
所以当我在each里想使用return true给这个function返回时,其实只是让each继续执行而以,连each都没有中断,所以function也就不能return了 。如果要跳出整个each循环,则必须用 return false;
其用法为:
$.each(array,function(){
if(条件1成立){
return true; //相当于continue;
}
if(条件2成立){
return false; //相当于break;
}
});