. 代碼如下:
function methodone(){
....
$.each(array,function(){
if(條件成立){
return true;
}
});
....
}
在一個function裡有一個each,在each裡某種條件 成立的話,就把這個function返回true或者false
但是在each代碼塊內不能使用break和continue,要實現break和continue的功能的話,要使用其它的方式
break----用return false;
continue --用return ture;
所以當我在each裡想使用return true給這個function返回時,其實只是讓each繼續執行而以
連each都沒有中斷,所以function也就不能return了 。
解決辦法:通過try捕捉throw出來的錯誤,達到退出each、並返回錯誤的目標!
. 代碼如下:
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 "對不起,請您填寫有效期!";
}
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 "對不起,結束日期不能小於開始日期!";
}
}
var txtRemaindAmt = $("#" + prefix + "txtRemaindAmt");
if (txtRemaindAmt.val().match(/^[0-9]+$/) == null) {
txtRemaindAmt.addClass("fareValidForm");
throw "對不起,機票數量必須為數字!";
}
else {
if (txtRemaindAmt.val() < 1) {
txtRemaindAmt.addClass("fareValidForm");
throw "對不起,機票數量必須大於0!";
}
}
var txtFarePrice = $("#" + prefix + "txtFarePrice");
if (txtFarePrice.val().match(/^[0-9]+0$/) == null) {
txtFarePrice.addClass("fareValidForm");
throw "對不起,票面價必須為數字,且為10的倍數!";
}
});
} catch (e) {
PopupMsg(e);
return false;
}
return CustomConfirm(obj, '您確定要更新嗎?');
}
else {
PopupMsg("對不起,您沒有修改任何項!");
return false;
}
}