JavaScript 判斷日期格式是否正確的實現代碼
來源:互聯網
上載者:User
轉載者最起碼註明作者和出處!http://www.cnblogs.com/GuominQiu
複製代碼 代碼如下://---------------------------------------------------------------------------
//判斷日期格式是否正確
//傳回值是錯誤資訊, 無錯誤資訊即表示合法日期文字
function isDateString(strDate){
var strSeparator = "-"; //日期分隔符號
var strDateArray;
var intYear;
var intMonth;
var intDay;
var boolLeapYear;
var ErrorMsg = ""; //出錯資訊
strDateArray = strDate.split(strSeparator);
//沒有判斷長度,其實2008-8-8也是合理的//strDate.length != 10 ||
if(strDateArray.length != 3) {
ErrorMsg += "日期格式必須為: yyyy-MM-dd";
return ErrorMsg;
}
intYear = parseInt(strDateArray[0],10);
intMonth = parseInt(strDateArray[1],10);
intDay = parseInt(strDateArray[2],10);
if(isNaN(intYear)||isNaN(intMonth)||isNaN(intDay)) {
ErrorMsg += "日期格式錯誤: 年月日必須為純數字";
return ErrorMsg;
}
if(intMonth>12 || intMonth<1) {
ErrorMsg += "日期格式錯誤: 月份必須介於1和12之間";
return ErrorMsg;
}
if((intMonth==1||intMonth==3||intMonth==5||intMonth==7
||intMonth==8||intMonth==10||intMonth==12)
&&(intDay>31||intDay<1)) {
ErrorMsg += "日期格式錯誤: 大月的天數必須介於1到31之間";
return ErrorMsg;
}
if((intMonth==4||intMonth==6||intMonth==9||intMonth==11)
&&(intDay>30||intDay<1)) {
ErrorMsg += "日期格式錯誤: 小月的天數必須介於1到31之間";
return ErrorMsg;
}
if(intMonth==2){
if(intDay < 1) {
ErrorMsg += "日期格式錯誤: 日期必須大於或等於1";
return ErrorMsg;
}
boolLeapYear = false;
if((intYear%100) == 0){
if((intYear%400) == 0)
boolLeapYear = true;
}
else{
if((intYear % 4) == 0)
boolLeapYear = true;
}
if(boolLeapYear){
if(intDay > 29) {
ErrorMsg += "日期格式錯誤: 閏年的2月份天數不能超過29";
return ErrorMsg;
}
} else {
if(intDay > 28) {
ErrorMsg += "日期格式錯誤: 非閏年的2月份天數不能超過28";
return ErrorMsg;
}
}
}
return ErrorMsg;
}