JQuery jumps out of the each loop and jquery jumps out of the each loop.
I. jquery each loop to implement the break and continue functions:
Break ---- return false;
Continue -- use return ture;
Ii. How does jquery jump out of the current each loop?
Some may think that continue and break can be used directly when jquery jumps out of the loop, but they do not work after they are used, because jquery does not have these two commands.
Then I checked it online and got the result:
Return false; -- jump out of all loops; equivalent to the break effect in javascript.
Return true; -- jump out of the current loop and enter the next loop; equivalent to the continue effect in javascript
Example
Copy codeThe Code is as follows:
$ (Function (){
$ ("Input [type = 'text']"). each (function (I ){
Var _ val = $ (this). val ();
Alert (_ val );
If (_ val = '2 '){
Return false; // jump out of the loop
}
})
});
Iii. Jquery each method
Return false: stops the loop (like using 'Break' in a normal loop ').
Return true: jump to the next loop (just like using 'contine' in a normal loop ').
Copy codeThe Code is as follows:
Function test (){
Var success = false;
$ (...). Each (function (){
If (..){
Success = true;
Return false;
}
});
Return success;
}
Jquery is an object chain, so $ (...). each () returns an object set. Each (function () {}): It is a callback function. In the callback function, results cannot be returned outside the callback function each.