首頁 >web前端 >js教程 >jqGrid日期格式的判斷範例程式碼(開始日期與結束日期)_jquery

jqGrid日期格式的判斷範例程式碼(開始日期與結束日期)_jquery

WBOY
WBOY原創
2016-05-16 17:17:011312瀏覽

複製程式碼 程式碼如下:

 var beginValue = "开始时间";
                    var endValue = "结束时间";
                    var dispaly = jQuery("#testSubjectGrid").jqGrid("getCell", idArray[i], "display_content");
                    if (CheckDate(begindata, dispaly, beginValue) == false) {
                        return false;
                    }
                    if (CheckDate(enddata, dispaly, endValue) == false) {
                        return false;
                    }

 

//日期的驗證(yyyy-mm-dd)
function CheckDate(strDate, i, dataValue) { 
    var reg = /^(/d{4})([-])(/ d{2})([-])(/d{2})/;
    if (!reg.test(strDate)) {
        jAlert("第" i "行" dataValue "的日期格式不正確!/n正確格式為:2007-01-01", "提示訊息");
        return false;
    }
    var ss = strDate.plit( var year = ss[0];
    var month = ss[1];
    var date = ss[2];
   
    }
    if (!checkMonth(month, i,dataValue)) {
        return false;
        return false;

        return false;
    }
    return true;
}
//年份判斷
function
}
//年份判斷        jAlert("第" i "行" dataValue "的年份輸入錯誤,請重新輸入!", "提示訊息");
      if (parseInt(year) 2100) {
        jAlert("第" i "行" dataValue "的年份應該在1900-21000之間!", "提示資訊之間!
        return false;
    }
    else {
       (month, i, dataValue) {
    if (isNaN(parseInt(month))) {
        jAlert("第" i "行" dataValue "的月份輸入錯誤,請重新輸入 ;
    }
    if (month.substring(0, 1) == 0) {
        ("第" i "行" dataValue "的月份應在1-12之間!", "提示訊息");
            return false;
        return false;
     1 || parseInt(month) > 12) {
        jAlert("第" i "行" dataValue "的月份應在1-12之間!", "提示訊息");
    } else {
        return true;
    }
}
//日期= CalDays (parseInt(year), parseInt(month));
    if (isNaN(parseInt(date))) {
        jAlert("第" i "行" dataValue "的輸入日期有誤請重新輸入", "提示訊息");
        return false;
    }
    else if (parseInt(date)         return false;
    }}
function CalDays(year, month) {
    var date = new Date(year, month, 0);
    return date.getDate();    if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) {
    }  return false;
    }
}


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn