JQuery method for jumping out of the each loop _ jquery

Source: Internet
Author: User
This article mainly introduces how JQuery jumps out of the each loop. This article explains how jquery jumps out of the current each loop, how the Jqueryeach method jumps out of the loop, and how to obtain the returned value, for more information, see 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

The 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 ').

The 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.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.