计算最后一个月的两个日期之间的月差异

时间:2015-03-02 15:31:43

标签: javascript jquery

如何使用javascript或jQuery查找计算上个月日期的两个日期之间的月差异。

例如:

01/03/2015 - 31/03/2015 - Month: 1

01/03/2015 - 30/03/2015 - Month: 0

1 个答案:

答案 0 :(得分:0)

使用javascript Date:getMonth()方法:

Date startDate = "01/03/2015";
var startMonth = startDate.getMonth(); 

更多信息here