JQuery jumps out of the each loop and jquery jumps out of the each loop.

Source: Internet
Author: User

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.

Related Article

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.