在 javascript 中比较日期的最简单方法是首先将其转换为 Date 对象,然后比较这些日期对象。
您可以在下面找到一个具有三个功能的对象:
日期.比较(a,b)
返回一个数字:
-1 如果 a < b 0 如果 a = b 1 如果 a > b NaN 如果 a 或 b 是非法日期 dates.inRange (d,start,end)
返回一个布尔值或 NaN:
如果 d 在 start 和 end(包括)之间,则为 true 如果 d 在 start 之前或 end 之后,则为 false。如果一个或多个日期是非法的,则为 NaN。日期转换
由其他函数用于将其输入转换为日期对象。输入可以是
日期对象:输入按原样返回。一个数组:解释为[年、月、日]。注意月份是 0-11。数字:解释为自 1970 年 1 月 1 日以来的毫秒数(时间戳)字符串:支持几种不同的格式,例如“YYYY/MM/DD”、“MM/DD/YYYY”、“2009 年 1 月 31 日”等。 object:解释为具有年、月、日属性的对象。注意月份是 0-11。
// Source: http://stackoverflow.com/questions/497790
var dates = {
convert:function(d) {
// Converts the date in d to a date-object. The input can be:
// a date object: returned without modification
// an array : Interpreted as [year,month,day]. NOTE: month is 0-11.
// a number : Interpreted as number of milliseconds
// since 1 Jan 1970 (a timestamp)
// a string : Any format supported by the javascript engine, like
// "YYYY/MM/DD", "MM/DD/YYYY", "Jan 31 2009" etc.
// an object : Interpreted as an object with year, month and date
// attributes. **NOTE** month is 0-11.
return (
d.constructor === Date ? d :
d.constructor === Array ? new Date(d[0],d[1],d[2]) :
d.constructor === Number ? new Date(d) :
d.constructor === String ? new Date(d) :
typeof d === "object" ? new Date(d.year,d.month,d.date) :
NaN
);
},
compare:function(a,b) {
// Compare two dates (could be of any type supported by the convert
// function above) and returns:
// -1 : if a < b
// 0 : if a = b
// 1 : if a > b
// NaN : if a or b is an illegal date
// NOTE: The code inside isFinite does an assignment (=).
return (
isFinite(a=this.convert(a).valueOf()) &&
isFinite(b=this.convert(b).valueOf()) ?
(a>b)-(a<b) :
NaN
);
},
inRange:function(d,start,end) {
// Checks if date in d is between dates in start and end.
// Returns a boolean or NaN:
// true : if d is between start and end (inclusive)
// false : if d is before start or after end
// NaN : if one or more of the dates is illegal.
// NOTE: The code inside isFinite does an assignment (=).
return (
isFinite(d=this.convert(d).valueOf()) &&
isFinite(start=this.convert(start).valueOf()) &&
isFinite(end=this.convert(end).valueOf()) ?
start <= d && d <= end :
NaN
);
}
}