在 javascript 中添加一天到现在
2022-08-30 05:40:41
我相信很多人问了这个问题,但是当我检查答案时,在我看来,他们错了,我发现了什么
var startDate = new Date(Date.parse(startdate));
//The start date is right lets say it is 'Mon Jun 30 2014 00:00:00'
var endDate = new Date(startDate.getDate() + 1);
// the enddate in the console will be 'Wed Dec 31 1969 18:00:00' and that's wrong it should be 1 july
我知道从1-31返回,但是浏览器或javascript是否只在不更新月份和年份的情况下增加一天?.getDate()
在这种情况下,我应该写一个算法来处理这个问题吗?还是有另一种方式?