jQuery 跳出each循环
程序员文章站
2022-05-03 19:57:56
...
jquery跳出 each 循环,要实现break和continue的功能:
break用return false;
continue 用return ture;
jquery 跳出each循环实例
break用return false;
continue 用return ture;
jquery 跳出each循环实例
var arr = [ "abc", "ef","gggg"];
$.each(arr, function(index, value){
if (this == "abc")
return false;
}
);
下一篇: 爬虫之urllib.error模块