如何使用javascript或jQuery查找计算上个月日期的两个日期之间的月差异。
例如:
01/03/2015 - 31/03/2015 - Month: 1
01/03/2015 - 30/03/2015 - Month: 0
答案 0 :(得分:0)
使用javascript Date:getMonth()
方法:
Date startDate = "01/03/2015";
var startMonth = startDate.getMonth();
更多信息here