How to use continue in jQuery each() loop?

后端 未结 4 1675
悲&欢浪女
悲&欢浪女 2021-01-29 20:13

In my application i am using AJAX call. I want to use break and continue in this jQuery loop.

$(\'.submit\').filter(\':checked\').each         


        
4条回答
  •  一个人的身影
    2021-01-29 20:44

    We can break the $.each() loop at a particular iteration by making the callback function return false. Returning non-false is the same as a continue statement in a for loop; it will skip immediately to the next iteration. -- jQuery.each() | jQuery API Documentation

提交回复
热议问题