jquery $.each终止本次循环

1、for循环中我们使用continue;终止本次循环计入下一个循环,使用break终止整个循环。

2、而在jquery中 $.each则对应的使用return true 进入下一个循环,return false 跳出循环。

原文地址:https://www.cnblogs.com/starof/p/5950224.html