JavaScript中的日期之间的差异

时间:2009-12-28 06:02:22

标签: javascript datetime datediff

如何找到两个日期之间的差异?

8 个答案:

答案 0 :(得分:95)

通过使用Date对象及其毫秒值,可以计算差异:

var a = new Date(); // Current date now.
var b = new Date(2010, 0, 1, 0, 0, 0, 0); // Start of 2010.
var d = (b-a); // Difference in milliseconds.

您可以通过将毫秒除以1000得到秒数(作为整数/整数),将其转换为秒,然后将结果转换为整数(这将删除表示毫秒的小数部分):

var seconds = parseInt((b-a)/1000);

然后,您可以通过将minutes除以60并将其转换为整数来获得整数seconds,然后将hours除以60并将其转换为整数来minutes ,然后以相同的方式更长的时间单位。由此,可以创建一个函数来获得较低单位的值的最大整数时间单位和剩余的较低单位:

function get_whole_values(base_value, time_fractions) {
    time_data = [base_value];
    for (i = 0; i < time_fractions.length; i++) {
        time_data.push(parseInt(time_data[i]/time_fractions[i]));
        time_data[i] = time_data[i] % time_fractions[i];
    }; return time_data;
};
// Input parameters below: base value of 72000 milliseconds, time fractions are
// 1000 (amount of milliseconds in a second) and 60 (amount of seconds in a minute). 
console.log(get_whole_values(72000, [1000, 60]));
// -> [0,12,1] # 0 whole milliseconds, 12 whole seconds, 1 whole minute.

如果您想知道上面为第二个Date object提供的输入参数是什么,请参阅下面的名称:

new Date(<year>, <month>, <day>, <hours>, <minutes>, <seconds>, <milliseconds>);

正如此解决方案的评论中所述,除非您希望表示日期,否则您不一定需要提供所有这些值。

答案 1 :(得分:4)

我找到了这个,它对我来说很好用:

计算两个已知日期之间的差异

不幸的是,计算两个已知日期之间的日期间隔(例如天,周或月)并不容易,因为您不能只将Date对象添加到一起。为了在任何类型的计算中使用Date对象,我们必须首先检索Date的内部毫秒值,该值存储为一个大整数。执行此操作的功能是Date.getTime()。一旦两个日期都被转换,从较早的日期中减去后一个日期将返回以毫秒为单位的差异。然后可以通过将该数除以相应的毫秒数来确定所需的间隔。例如,要获得给定毫秒数的天数,我们将除以86,400,000,即一天中的毫秒数(1000 x 60秒x 60分钟x 24小时):

Date.daysBetween = function( date1, date2 ) {
  //Get 1 day in milliseconds
  var one_day=1000*60*60*24;

  // Convert both dates to milliseconds
  var date1_ms = date1.getTime();
  var date2_ms = date2.getTime();

  // Calculate the difference in milliseconds
  var difference_ms = date2_ms - date1_ms;

  // Convert back to days and return
  return Math.round(difference_ms/one_day); 
}

//Set the two dates
var y2k  = new Date(2000, 0, 1); 
var Jan1st2010 = new Date(y2k.getFullYear() + 10, y2k.getMonth(), y2k.getDate());
var today= new Date();
//displays 726
console.log( 'Days since ' 
           + Jan1st2010.toLocaleDateString() + ': ' 
           + Date.daysBetween(Jan1st2010, today));

舍入是可选的,取决于您是否需要部分天。

Reference

答案 2 :(得分:3)

    // This is for first date
    first = new Date(2010, 03, 08, 15, 30, 10); // Get the first date epoch object
    document.write((first.getTime())/1000); // get the actual epoch values
    second = new Date(2012, 03, 08, 15, 30, 10); // Get the first date epoch object
    document.write((second.getTime())/1000); // get the actual epoch values
    diff= second - first ;
    one_day_epoch = 24*60*60 ;  // calculating one epoch
    if ( diff/ one_day_epoch > 365 ) // check , is it exceei
    {
    alert( 'date is exceeding one year');
    }

答案 3 :(得分:1)

如果您正在寻找以年,月和日组合表示的差异,我建议使用此功能:

function interval(date1, date2) {
    if (date1 > date2) { // swap
        var result = interval(date2, date1);
        result.years  = -result.years;
        result.months = -result.months;
        result.days   = -result.days;
        result.hours  = -result.hours;
        return result;
    }
    result = {
        years:  date2.getYear()  - date1.getYear(),
        months: date2.getMonth() - date1.getMonth(),
        days:   date2.getDate()  - date1.getDate(),
        hours:  date2.getHours() - date1.getHours()
    };
    if (result.hours < 0) {
        result.days--;
        result.hours += 24;
    }
    if (result.days < 0) {
        result.months--;
        // days = days left in date1's month, 
        //   plus days that have passed in date2's month
        var copy1 = new Date(date1.getTime());
        copy1.setDate(32);
        result.days = 32-date1.getDate()-copy1.getDate()+date2.getDate();
    }
    if (result.months < 0) {
        result.years--;
        result.months+=12;
    }
    return result;
}

// Be aware that the month argument is zero-based (January = 0)
var date1 = new Date(2015, 4-1, 6);
var date2 = new Date(2015, 5-1, 9);

document.write(JSON.stringify(interval(date1, date2)));

这个解决方案将以一种我们自然会做的方式处理闰年(2月29日)和月长差异(我认为)。

例如,2015年2月28日至2015年3月28日之间的时间间隔恰好是一个月,而不是28天。如果这两天都在2016年,差异仍然只有一个月,而不是29天。

与月份和日期完全相同但日期不同的日期将始终存在确切年数的差异。因此,2015-03-01和2016-03-01之间的差异将是1年,而不是1年和1天(因为计算365天为1年)。

答案 4 :(得分:1)

此答案基于另一个答案(末尾链接),是关于两个日期之间的差异。
您可以看到它的工作原理,因为它很简单,还包括将差异分成
时间单位(我制作的函数)并转换为UTC以停止时区问题。

function date_units_diff(a, b, unit_amounts) {
    var split_to_whole_units = function (milliseconds, unit_amounts) {
        // unit_amounts = list/array of amounts of milliseconds in a
        // second, seconds in a minute, etc., for example "[1000, 60]".
        time_data = [milliseconds];
        for (i = 0; i < unit_amounts.length; i++) {
            time_data.push(parseInt(time_data[i] / unit_amounts[i]));
            time_data[i] = time_data[i] % unit_amounts[i];
        }; return time_data.reverse();
    }; if (unit_amounts == undefined) {
        unit_amounts = [1000, 60, 60, 24];
    };
    var utc_a = new Date(a.toUTCString());
    var utc_b = new Date(b.toUTCString());
    var diff = (utc_b - utc_a);
    return split_to_whole_units(diff, unit_amounts);
}

// Example of use:
var d = date_units_diff(new Date(2010, 0, 1, 0, 0, 0, 0), new Date()).slice(0,-2);
document.write("In difference: 0 days, 1 hours, 2 minutes.".replace(
   /0|1|2/g, function (x) {return String( d[Number(x)] );} ));

我上面的代码如何工作

可以使用Date对象来计算日期/时间差(以毫秒为单位):

var a = new Date(); // Current date now.
var b = new Date(2010, 0, 1, 0, 0, 0, 0); // Start of 2010.

var utc_a = new Date(a.toUTCString());
var utc_b = new Date(b.toUTCString());
var diff = (utc_b - utc_a); // The difference as milliseconds.

然后计算出该差异的秒数,将其除以1000即可转换
毫秒到秒,然后将结果更改为整数(整数)以删除
毫秒(该小数的小数部分):var seconds = parseInt(diff/1000)
另外,我可以使用相同的过程获得更长的时间单位,例如:
 -(整个)分钟,用 seconds 除以60,然后将结果更改为整数,
 - hours ,将 minutes 除以60,然后将结果更改为整数。

我创建了一个函数,用于将差异分为
此演示的整个时间单位,名为split_to_whole_units

console.log(split_to_whole_units(72000, [1000, 60]));
// -> [1,12,0] # 1 (whole) minute, 12 seconds, 0 milliseconds.

此答案基于this other one

答案 5 :(得分:0)

Date.prototype.addDays = function(days) {

   var dat = new Date(this.valueOf())
   dat.setDate(dat.getDate() + days);
   return dat;
}

function getDates(startDate, stopDate) {

  var dateArray = new Array();
  var currentDate = startDate;
  while (currentDate <= stopDate) {
    dateArray.push(currentDate);
    currentDate = currentDate.addDays(1);
  }
  return dateArray;
}

var dateArray = getDates(new Date(), (new Date().addDays(7)));

for (i = 0; i < dateArray.length; i ++ ) {
  //  alert (dateArray[i]);

    date=('0'+dateArray[i].getDate()).slice(-2);
    month=('0' +(dateArray[i].getMonth()+1)).slice(-2);
    year=dateArray[i].getFullYear();
    alert(date+"-"+month+"-"+year );
}

答案 6 :(得分:0)

var DateDiff = function(type, start, end) {

    let // or var
        years = end.getFullYear() - start.getFullYear(),
        monthsStart = start.getMonth(),
        monthsEnd = end.getMonth()
    ;

    var returns = -1;

    switch(type){
        case 'm': case 'mm': case 'month': case 'months':
            returns = ( ( ( years * 12 ) - ( 12 - monthsEnd ) ) + ( 12 - monthsStart ) );
            break;
        case 'y': case 'yy': case 'year': case 'years':
            returns = years;
            break;
        case 'd': case 'dd': case 'day': case 'days':
            returns = ( ( end - start ) / ( 1000 * 60 * 60 * 24 ) );
            break;
    }

    return returns;

}
  

用法

     

var qtMonths = DateDiff('mm',new Date('2015-05-05'),new Date());

     

var qtYears = DateDiff('yy',new Date('2015-05-05'),new Date());

     

var qtDays = DateDiff('dd',new Date('2015-05-05'),new Date());

     
    

OR

         

var qtMonths = DateDiff('m',new Date('2015-05-05'),new Date()); // m || y || d

         

var qtMonths = DateDiff('month',new Date('2015-05-05'),new Date()); //月||年||天

         

var qtMonths = DateDiff('months',new Date('2015-05-05'),new Date()); //个月||年||天

         

...

  
var DateDiff = function (type, start, end) {

    let // or var
        years = end.getFullYear() - start.getFullYear(),
        monthsStart = start.getMonth(),
        monthsEnd = end.getMonth()
    ;

    if(['m', 'mm', 'month', 'months'].includes(type)/*ES6*/)
        return ( ( ( years * 12 ) - ( 12 - monthsEnd ) ) + ( 12 - monthsStart ) );
    else if(['y', 'yy', 'year', 'years'].includes(type))
        return years;
    else if (['d', 'dd', 'day', 'days'].indexOf(type) !== -1/*EARLIER JAVASCRIPT VERSIONS*/)
        return ( ( end - start ) / ( 1000 * 60 * 60 * 24 ) );
    else
        return -1;

}

答案 7 :(得分:0)

您也可以使用它

export function diffDateAndToString(small: Date, big: Date) {


    // To calculate the time difference of two dates 
    const Difference_In_Time = big.getTime() - small.getTime()

    // To calculate the no. of days between two dates 
    const Days = Difference_In_Time / (1000 * 3600 * 24)
    const Mins = Difference_In_Time / (60 * 1000)
    const Hours = Mins / 60

    const diffDate = new Date(Difference_In_Time)

    console.log({ date: small, now: big, diffDate, Difference_In_Days: Days, Difference_In_Mins: Mins, Difference_In_Hours: Hours })

    var result = ''

    if (Mins < 60) {
        result = Mins + 'm'
    } else if (Hours < 24) result = diffDate.getMinutes() + 'h'
    else result = Days + 'd'
    return { result, Days, Mins, Hours }
}

结果为{结果:“ 30d”,天:30,分钟:43200,小时:720}