Javascript DateDiff

问题描述 投票:7回答:4

我遇到DateDiff函数的问题。我想弄清楚两个日期/时间之间的差异。我已经阅读了这篇文章(What's the best way to calculate date difference in Javascript),我也看了这个教程(http://www.javascriptkit.com/javatutors/datedifference.shtml),但我似乎无法得到它。

这是我试图开始工作但没有成功。有人可以告诉我我在做什么以及如何简化这一点。似乎有点过度编码......?

//Set the two dates
var currentTime = new Date();
var month = currentTime.getMonth() + 1;
var day = currentTime.getDate();
var year = currentTime.getFullYear();
var currDate = month + "/" + day + "/" + year;
var iniremDate = "8/10/2012";

//Show the dates subtracted
document.write('DateDiff is: ' + currDate - iniremDate);

//Try this function...
function DateDiff(date1, date2) {
    return date1.getTime() - date2.getTime();
}

//Print the results of DateDiff
document.write (DateDiff(iniremDate, currDate);
javascript date datediff
4个回答
5
投票

您的第一次尝试先添加,然后减去。你无论如何都不能减去字符串,因此产生NaN

第二个特里没有关闭)。除此之外,你在字符串上调用getTime。你需要使用new Date(...).getTime()。请注意,在减去日期时,您会得到以毫秒为单位的结果。您可以通过取出整天/小时/等来格式化。


10
投票

对于那些想要一个工作示例的人来说,这是一个简单的DateDiff ex,它以负值(已经过去的日期)或正(日期即将到来)告诉日期差异。

编辑:我更新了这个脚本,所以它会为你做腿部工作并将结果转换为-10,这意味着日期已经过去了。为currDate和iniPastedDate输入你自己的日期,你应该好好去!

//Set the two dates
var currentTime   = new Date()
var currDate      = currentTime.getMonth() + 1 + "/" + currentTime.getDate() + "/" + currentTime.getFullYear() //Todays Date - implement your own date here.
var iniPastedDate = "8/7/2012" //PassedDate - Implement your own date here.

//currDate = 8/17/12 and iniPastedDate = 8/7/12

function DateDiff(date1, date2) {
    var datediff = date1.getTime() - date2.getTime(); //store the getTime diff - or +
    return (datediff / (24*60*60*1000)); //Convert values to -/+ days and return value      
}

//Write out the returning value should be using this example equal -10 which means 
//it has passed by ten days. If its positive the date is coming +10.    
document.write (DateDiff(new Date(iniPastedDate),new Date(currDate))); //Print the results...

2
投票
function setDateWeek(setDay){
    var d = new Date();
    d.setDate(d.getDate() - setDay); // <-- add this
    var curr_date = d.getDate();
    var curr_month = d.getMonth() + 1;
    var curr_year = d.getFullYear();
    return curr_date + "-" + curr_month + "-" + curr_year;
}


setDateWeek(1);

0
投票

无需包含JQuery或任何其他第三方库。

在标题标签中指定输入日期格式。

HTML:

< script type="text/javascript" src="http://services.iperfect.net/js/IP_generalLib.js">

使用javascript函数:

IP_dateDiff(strDate1,strDate2,strDateFormat,debug[true/false])

alert(IP_dateDiff('11-12-2014','12-12-2014','DD-MM-YYYY',false));

IP_dateDiff函数将返回天数。

© www.soinside.com 2019 - 2024. All rights reserved.