資源描述:
《js日期時(shí)間格式驗(yàn)證,時(shí)間比較》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。
1、js日期時(shí)間格式驗(yàn)證,時(shí)間比較.txt什么叫神話?請(qǐng)聽男人向你表達(dá)愛意;什么叫傳說?請(qǐng)聽男人對(duì)你的承諾;什么叫夢(mèng)境?請(qǐng)看你自己聽到前兩者時(shí)的反應(yīng)。js日期時(shí)間格式驗(yàn)證,時(shí)間比較.txt你無法改變別人,但你可以改變自己;你無法改變天氣,但你可以改變心情;你無法改變生命長(zhǎng)度,但你可以拓展它的寬度。日期時(shí)間腳本庫(kù)方法列表Date.prototype.isLeapYear判斷閏年Date.prototype.Format日期格式化Date.prototype.DateAdd日期計(jì)算Date.prototype.DateDiff比較日期差Date.prototy
2、pe.toString日期轉(zhuǎn)字符串Date.prototype.toArray日期分割為數(shù)組Date.prototype.DatePart取日期的部分信息Date.prototype.MaxDayOfDate取日期所在月的最大天數(shù)Date.prototype.WeekNumOfYear判斷日期所在年的第幾周StringToDate字符串轉(zhuǎn)日期型IsValidDate驗(yàn)證日期有效性CheckDateTime完整日期時(shí)間檢查daysBetween日期天數(shù)差js代碼//---------------------------------------------
3、------//判斷閏年//---------------------------------------------------Date.prototype.isLeapYear=function(){return(0==this.getYear()%4&&((this.getYear()%100!=0)
4、
5、(this.getYear()%400==0)));}//---------------------------------------------------//日期格式化//格式Y(jié)YYY/yyyy/YY/yy表示年份//MM/M月份//W/w
6、星期//dd/DD/d/D日期//hh/HH/h/H時(shí)間//mm/m分鐘//ss/SS/s/S秒//---------------------------------------------------Date.prototype.Format=function(formatStr){varstr=formatStr;varWeek=['日','一','二','三','四','五','六'];str=str.replace(/yyyy
7、YYYY/,this.getFullYear());str=str.replace(/yy
8、YY/,(this.get
9、Year()%100)>9?(this.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/,this.getDate()
12、>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/,this.getMinutes()>9?this.getMinutes().to
16、String():'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());returnstr;}//+---------------------------------------------------//
19、求
20、兩個(gè)時(shí)間的天數(shù)差日期格式為YYYY-MM-dd//+---------------------