-4

我想仅使用 javascript 示例将天数添加到特定日期:

textbox1.text=10-04-2013
textbox2.text=30

textbox3.text=10-05-2013
4

1 回答 1

1

You can use this

var yourDate= new Date();
var numberOfDaysToAdd = 6;
someDate.setDate(yourDate.getDate() + numberOfDaysToAdd); 
于 2013-04-19T07:29:25.193 回答