


Use return true or false instead of break or continue_jquery in each of Jquery
function methodone(){
....
$.each(array,function(){
if(condition is true){
return true;
}
});
....
}
There is an each in a function. If a certain condition in each is true, the function will return true or false
But break and continue cannot be used in the each code block. To implement For the functions of break and continue, you need to use other methods
break----use return false;
continue - use return true;
So when I want to use return true in each When returning to this function, it actually just allows each to continue executing without
even each is interrupted, so the function cannot return.
Solution: Use try to capture throw errors to achieve the goal of exiting each and returning errors!
function CheckBatchRow(obj) {
if ($ (":checkbox[id$='chkSelect']:checked").size() > 0) {
try {
$(":checkbox[id$='chkSelect']:checked") .each(function() {
var prefix = this.id.replace("chkSelect", "");
var txtDateStart = $("#" prefix "txtDateStart");
var txtDateEnd = $("#" prefix "txtDateEnd");
if ($.trim(txtDateStart.val()) == '' || $.trim(txtDateEnd.val()) == '') {
txtDateStart.addClass("fareValidForm");
txtDateEnd.addClass("fareValidForm");
throw "Sorry, please fill in the validity period!";
}
else {
d1Arr = txtDateStart.val().split('-');
d2Arr = txtDateEnd.val().split('-');
v1 = new Date(d1Arr[0], d1Arr[1], d1Arr[2]);
v2 = new Date(d2Arr[0], d2Arr[1], d2Arr[2]);
if (v2 < v1) {
txtDateEnd .addClass("fareValidForm");
throw "Sorry, the end date cannot be less than the start date!";
}
}
var txtRemaindAmt = $("#" prefix "txtRemaindAmt" );
if (txtRemaindAmt.val().match(/^[0-9] $/) == null) {
txtRemaindAmt.addClass("fareValidForm");
throw "Sorry, ticket Quantity must be a number! ";
}
else {
if (txtRemaindAmt.val() < 1) {
txtRemaindAmt.addClass("fareValidForm");
throw "Sorry, the number of tickets must be greater than 0 ! ";
}
}
var txtFarePrice = $("#" prefix "txtFarePrice");
if (txtFarePrice.val().match(/^[0-9] 0$/) == null) {
txtFarePrice.addClass("fareValidForm");
throw "Sorry, the face price must be a number and a multiple of 10! ";
}
});
} catch (e) {
PopupMsg(e);
return false;
}
return CustomConfirm (obj, 'Are you sure you want to update?');
}
else {
PopupMsg("Sorry, you have not modified any items!");
return false;
}
}

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

continue is to jump out of the current loop. The continue statement is used to skip this loop and execute the next loop; when encountering the continue statement, the program will immediately recheck the conditional expression. If the expression result is true, the next loop will start. If the expression result is false, Exit the loop.

The role and use of the continue keyword in PHP In PHP programming, continue is a very useful keyword. It is used to control the execution flow of loop statements, allowing to skip the remaining code in the current loop and directly enter the execution of the next loop. The function of continue is to skip the code in the current iteration in the loop statement and start the next iteration directly. When the continue statement is executed, loop control will immediately go to the beginning of the loop body without executing continue.

It is very common to use switch statements to select multiple branches in PHP. Usually, a break statement is used to exit the switch statement after each branch. However, there are situations where we do not want to use the break statement. This article will introduce the situation of not using break in the PHP switch statement.

In the Go language, the break stop statement is used to jump out of the loop in a loop statement and start executing the statement after the loop. The break statement can end the code blocks of for, switch and select. In addition, the break statement can also add a label after the statement to indicate exiting the code block corresponding to a certain label. The label requirement must be defined on the corresponding code block of for, switch and select. .

In PHP, break is used to jump out of the current syntax structure and execute the following statements; it can be used in statements such as switch, for, while, and do while. It can terminate the code of the loop body and jump out of the current loop immediately, and execute the following statements after the loop. code. The break statement can take a parameter n, which represents the number of levels to jump out of the loop. If you want to jump out of multiple loops, you can use n to represent the number of levels to jump out of. If there is no parameter, the default is to jump out of the current loop.

In the previous article, we took you to learn several loop control structures in JS (while and do-while loops, for loops). Let’s talk about the break and continue statements to jump out of the loop. I hope it will be helpful to everyone!

Note 1. The function of break is to jump out of the current loop block (for, while, dowhile) or program block (switch). 2. The function of the loop block is to jump out of the loop body currently in the loop. The function of the program block is to interrupt and compare the next case condition. Use break in a switch statement to terminate the switch statement. When break is used in a loop, it breaks out of the loop. There is no point in using break elsewhere. Example intsum=0;inti;for(i=1;i

Note 1. The continue statement refers to skipping the remaining statements in the loop and forcing the execution of the next loop. Its function is to end the loop, that is, skip the unexecuted statements below in the loop, and then determine whether the next loop is executed. 2. The continue statement is similar to the break statement, but it can only appear in a loop. Example intsum=0;for(inti=1;i
