我想在javascript中获取两个日期之间的区别但我的问题是第一个日期是PC的当前日期:
today = new Date();
,另一个日期是这样的文本格式日期,例如:
other_date = '15.11.2013';
我希望今天的日期与other_date的格式相同然后减去它们,如何更改今天的格式以使其与other_date相同?以及我如何将它们作为日期格式来减去它们并正确地得到差异???
答案 0 :(得分:1)
我只需使用split
函数来获取日期字符串的日期部分:
var today = new Date();
var other_date = '15.11.2013';
var dateparts = other_date.split('.');
var otherDate = new Date(dateparts[2], dateparts[1]-1, dateparts[0]); // substract 1 month because month starting with 0
var difference = today.getTime() - otherDate.getTime(); // difference in ms