比较两个日期的最佳方法是什么?
var int = e.parameter.intlistbox;
var startDate = rSheet.getRange(parseInt(int) + 1 ,1).getValues();
// returns Sat Jun 30 2012 00:00:00 GMT-0300 (BRT)
var toDay = new Date();
// Sat Jun 23 2012 22:24:56 GMT-0300 (BRT)
if (startDate > toDay){ ....
我看到.toString()选项,但这似乎只适用于==或===运算符。
关于这个问题有什么明确的吗?
答案 0 :(得分:25)
Date
对象具有valueOf
方法,该方法返回自1970-01-01午夜以来的毫秒数。您可以使用它来比较日期。像
var date01 = new Date();
var date02 = new Date(2012, 5, 24);
if (date01.valueOf() > date02.valueOf()) {
....
}
答案 1 :(得分:12)
有人发布了这一段时间,我发现它非常有用
function testDate() {
var futureDate = new Date('8/31/2020');
var todayDate = new Date();
Logger.log(DateDiff.inMonths(todayDate, futureDate));
Logger.log(DateDiff.inYears(todayDate, futureDate));
}
var DateDiff = {
inDays: function(d1, d2) {
var t2 = d2.getTime();
var t1 = d1.getTime();
return parseInt((t2-t1)/(24*3600*1000));
},
inWeeks: function(d1, d2) {
var t2 = d2.getTime();
var t1 = d1.getTime();
return parseInt((t2-t1)/(24*3600*1000*7));
},
inMonths: function(d1, d2) {
var d1Y = d1.getFullYear();
var d2Y = d2.getFullYear();
var d1M = d1.getMonth();
var d2M = d2.getMonth();
return (d2M+12*d2Y)-(d1M+12*d1Y);
},
inYears: function(d1, d2) {
return d2.getFullYear()-d1.getFullYear();
}
}
答案 2 :(得分:5)
// Date, Date -> Number
// Get the number of days between two dates
test("Date Diff In Days", 5, function(){
ok(DateDiffInDays(new Date("January 1, 2000"), new Date("January 1, 2000")) == 0, "Ok");
ok(DateDiffInDays(new Date("January 1, 2000"), new Date("January 2, 2000")) == 1, "Ok");
ok(DateDiffInDays(new Date("January 1, 2000"), new Date("January 11, 2000")) == 10, "Ok");
ok(DateDiffInDays(new Date("January 11, 2000"), new Date("January 1, 2000")) == -10, "Ok");
ok(DateDiffInDays(new Date("January 1, 2000"), new Date("April 10, 2000")) == 100, "Ok");
});
function DateDiffInDays(a, b)
{
var _MS_PER_DAY = 1000 * 60 * 60 * 24;
// Discard the time and time-zone information.
var utc1 = Date.UTC(a.getFullYear(), a.getMonth(), a.getDate());
var utc2 = Date.UTC(b.getFullYear(), b.getMonth(), b.getDate());
return Math.floor((utc2 - utc1) / _MS_PER_DAY);
}
答案 3 :(得分:4)
以下是该脚本:
today = parseInt(Utilities.formatDate(new Date(),"EST","D"));
如果您从电子表格中获取值,只需将值放入新的日期():
today = parseInt(Utilities.formatDate(new Date(rSheet.getRange(parseInt(int) + 1 ,1).getValues()),"EST","D"));
答案 4 :(得分:3)
日期对象可以像任何其他变量一样进行比较。唯一棘手的事情是,如果您需要比较同一天的两个日期,例如并期望获得日期A =日期B,在这种情况下您会遇到问题,因为日期还包括小时和分钟(以及秒+毫秒)! (这就是为什么我建议使用字符串检查你引用的帖子中的相等性)。 您可以做的是在两个变量中将小时,分钟,秒和毫秒设置为0,因此比较仅在日,月,年进行。 请参阅w3schools date reference page了解如何执行此操作。
另一种可能性是使用Utilities.formatDate()
将两个日期转换为字符串并使用substrings()
来获取您需要的数据但我想这不是一种非常优雅的方式来继续; - )
答案 5 :(得分:3)
我做了一些工作,不是那么迷人,但似乎服务。
var startDate = rSheet.getRange(parseInt(int) + 1 ,1).getValues();
var toDay = new Date();
var sYyyy = Utilities.formatDate(new Date(startDate), "GMT-2","yyyy");
var sMm = Utilities.formatDate(new Date(startDate), "GMT-2","MM");
var sDd = Utilities.formatDate(new Date(startDate), "GMT-2","dd");
var tYyyy = Utilities.formatDate(new Date(toDay), "GMT-2","yyyy");
var tMm = Utilities.formatDate(new Date(toDay), "GMT-2","MM");
var tDd = Utilities.formatDate(new Date(toDay), "GMT-2","dd");
if (sYyyy + sMm + sDd > tYyyy + tMm + tDd) {....
我也会检查其他答案并给它一个旋转。