欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jQuery 跳出each循环

程序员文章站 2022-07-12 23:41:33
...
jquery跳出 each 循环,要实现break和continue的功能:

break用return false;
continue 用return ture;

jquery 跳出each循环实例

var arr = [ "abc", "ef","gggg"];
$.each(arr, function(index, value){
  if (this == "abc")
    return false;
  }
);
相关标签: jquery each