资源描述:
《js日期时间格式验证,时间比较》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、js日期时间格式验证,时间比较日期时间脚本库方法列表Date.prototype.isLeapYear判断闰年Date.prototype.Format日期格式化Date.prototype.DateAdd日期计算Date.prototype.DateDiff比较日期差Date.prototype.toString日期转字符串Date.prototype.toArray日期分割为数组Date.prototype.DatePart取日期的部分信息Date.prototype.MaxDayOfDat
2、e取日期所在月的最大天数Date.prototype.WeekNumOfYear判断日期所在年的第几周StringToDate字符串转日期型IsValidDate验证日期有效性CheckDateTime完整日期时间检查daysBetween日期天数差js代码//---------------------------------------------------//判断闰年//---------------------------------------------------Date.prot
3、otype.isLeapYear=function(){return(0==this.getYear()%4&&((this.getYear()%100!=0)
4、
5、(this.getYear()%400==0)));}//---------------------------------------------------//日期格式化//格式YYYY/yyyy/YY/yy表示年份//MM/M月份//W/w星期//dd/DD/d/D日期//hh/HH/h/H时间//mm/m分钟//ss/SS/s
6、/S秒//---------------------------------------------------Date.prototype.Format=function(formatStr){varstr=formatStr;varWeek=['日','一','二','三','四','五','六'];str=str.replace(/yyyy
7、YYYY/,this.getFullYear());str=str.replace(/yy
8、YY/,(this.getYear()%100)>9?(t
9、his.getYear()%100).toString():'0'+(this.getYear()%100));str=str.replace(/MM/,this.getMonth()>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/,t
12、his.getDate()>9?this.getDate().toString():'0'+this.getDate());str=str.replace(/d
13、D/g,this.getDate());str=str.replace(/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
16、/,this.getMinutes()>9?this.getMinutes().toString():'0'+this.getMinutes());str=str.replace(/m/g,this.getMinutes());str=str.replace(/ss
17、SS/,this.getSeconds()>9?this.getSeconds().toString():'0'+this.getSeconds());str=str.replace(/s
18、S/g,this.getSeconds()
19、);returnstr;}//+---------------------------------------------------//
20、求两个时间的天数差日期格式为YYYY-MM-dd//+---------------------------------------------------functiondaysBetween(DateOne,DateTwo){varneMonth=DateOne.substring(5,DateOne.lastIndexOf('-'));varneDay