資源描述:
《js日期時(shí)間格式驗(yàn)證,時(shí)間比較》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在學(xué)術(shù)論文-天天文庫。
1、js日期時(shí)間格式驗(yàn)證,時(shí)間比較日期時(shí)間腳本庫方法列表Date.prototype.isLeapYear判斷閏年Date.prototype.Format日期格式化Date.prototype.DateAdd日期計(jì)算Date.prototype.DateDiff比較日期差Date.prototype.toString日期轉(zhuǎn)字符串Date.prototype.toArray日期分割為數(shù)組Date.prototype.DatePart取日期的部分信息Date.prototype.MaxDayOfDate取日期所在月的最大天數(shù)Date.proto
2、type.WeekNumOfYear判斷日期所在年的第幾周StringToDate字符串轉(zhuǎn)日期型IsValidDate驗(yàn)證日期有效性CheckDateTime完整日期時(shí)間檢查daysBetween日期天數(shù)差js代碼//---------------------------------------------------//判斷閏年//---------------------------------------------------Date.prototype.isLeapYear=function(){return(0==this.g
3、etYear()%4&&((this.getYear()%100!=0)
4、
5、(this.getYear()%400==0)));}//---------------------------------------------------//日期格式化//格式Y(jié)YYY/yyyy/YY/yy表示年份//MM/M月份//W/w星期//dd/DD/d/D日期//hh/HH/h/H時(shí)間//mm/m分鐘//ss/SS/s/S秒//---------------------------------------------------Date.proto
6、type.Format=function(formatStr){varstr=formatStr;varWeek=['日','一','二','三','四','五','六'];str=str.replace(/yyyy
7、YYYY/,this.getFullYear());str=str.replace(/yy
8、YY/,(this.getYear()%100)>9?(this.getYear()%100).toString():'0'+(this.getYear()%100));str=str.replace(/MM/,this.getMon
9、th()>9?this.getMonth().toString():'0'+this.getMonth());str=str.replace(/M/g,this.getMonth());str=str.replace(/w
10、W/g,Week[this.getDay()]);str=str.replace(/dd
11、DD/,this.getDate()>9?this.getDate().toString():'0'+this.getDate());str=str.replace(/d
12、D/g,this.getDate());str=str.r
13、eplace(/hh
14、HH/,this.getHours()>9?this.getHours().toString():'0'+this.getHours());str=str.replace(/h
15、H/g,this.getHours());str=str.replace(/mm/,this.getMinutes()>9?this.getMinutes().toString():'0'+this.getMinutes());str=str.replace(/m/g,this.getMinutes());str=str.replace(/s
16、s
17、SS/,this.getSeconds()>9?this.getSeconds().toString():'0'+this.getSeconds());str=str.replace(/s
18、S/g,this.getSeconds());returnstr;}//+---------------------------------------------------//
19、求兩個(gè)時(shí)間的天數(shù)差日期格式為YYYY-MM-dd//+---------------------------------------------------functi
20、ondaysBetween(DateOne,DateTwo){varneMonth=DateOne.substring(5,DateOne.lastIndexOf('-'));varneDay