1.在函数内部使用
return
false
是跳出
function
;
2.在each的回调函数中使用
,是跳出each循环;return true 进入下一个循环;
4.可以使用
break
.
5.使用
true
,相当于
continue