我必須計算三個日期形式的明天。例如todayes日期是1-12-2016
所以未來三日將是2-12-2016 , 3-12-2016 , 4-12-2016
如何從今天的日期得到下三個日期
我能夠做到這一點在這種情況下,但我的問題是,如果我的日期是30
或31
我是獲取日期爲32, 33, 34
,但我必須讓1, 2, 3
這裏是我的代碼
this.today = new Date();
this.tommorowDate =this.today.setDate(this.today.getDate() + 1)
console.log(this.tommorowDate)
this.dd = this.today.getDate();
this.mm = this.today.getMonth()+1;
this.yyyy = this.today.getFullYear();
this.currentDate = this.dd+'/'+this.mm+'/'+this.yyyy;
for(var i = 1; i <= 3; i++){
var incrementdate = this.dd+i;
this.datepickerArray.push(this.yyyy+'-'+this.mm+'-'+incrementdate)
}
我this.datepickerArray爲[31-1-2017,32-1-2017,33-1-2017。
但我必須像這樣[31-1-2017,1-2-2017,2-2-2017]。
我能夠得到明天的日期,但使用該如何得到我的數組更新與下個月。
看看[this](http://stackoverflow.com/questions/3674539/incrementing-a-date-in-javascript)。 – xzoert
看到這個http://stackoverflow.com/questions/3818193/how-to-add-number-of-days-to-todays-date –
可能重複的[添加日期到JavaScript日期](http:// stackoverflow。 com/questions/563406/add-days-to-javascript-date) –