资源描述:
《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.MaxDayOfDate取日期所在月的最大天数Date.proto
2、type.WeekNumOfYear判断日期所在年的第几周StringToDate字符串转日期型IsValidDate验证日期有效性CheckDateTime完整日期时间检查daysBetween日期天数差js代码//---------------------------------------------------//判断闰年//---------------------------------------------------Date.prototype.isLeapYear=function(){return(0==this.g
3、etYear()%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/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、求两个时间的天数差日期格式为YYYY-MM-dd//+---------------------------------------------------functi
20、ondaysBetween(DateOne,DateTwo){varneMonth=DateOne.substring(5,DateOne.lastIndexOf('-'));varneDay