jquery 中each退出循环和跳出循环
-
在js的for循环或者while循环中,都是采用break,continue来进行退出循环以及跳出循环。但是在jquery中的each循环时,退出循环是需要使用return false,跳出循环时需要使用return true;
-
代码例子:
$.each(Object, function(name, value) {
this; //this指向当前属性的值
name; //name表示Object当前属性的名称
value; //value表示Object当前属性的值
return false;//退出循环
return true;//跳出循环
});