码迷,mamicode.com
首页 > Web开发 > 详细

js日期比较

时间:2015-12-31 19:05:53      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

 

alert(EDate< new Date().format("yyyy-MM-dd hh:mm:ss"));

 

技术分享
 1 Date.prototype.format = function(format){ 
 2 var o = { 
 3 "M+" : this.getMonth()+1, //month 
 4 "d+" : this.getDate(), //day 
 5 "h+" : this.getHours(), //hour 
 6 "m+" : this.getMinutes(), //minute 
 7 "s+" : this.getSeconds(), //second 
 8 "q+" : Math.floor((this.getMonth()+3)/3), //quarter 
 9 "S" : this.getMilliseconds() //millisecond 
10 } 
11 
12 if(/(y+)/.test(format)) { 
13 format = format.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length)); 
14 } 
15 
16 for(var k in o) { 
17 if(new RegExp("("+ k +")").test(format)) { 
18 format = format.replace(RegExp.$1, RegExp.$1.length==1 ? o[k] : ("00"+ o[k]).substr((""+ o[k]).length)); 
19 } 
20 } 
21 return format; 
22 } 
View Code

 

js日期比较

标签:

原文地址:http://www.cnblogs.com/itslives-com/p/compareDate.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!