当前日期增加任意天数

function getdate(v){

var date1 =new Date(),

time1=date1.getFullYear()+"-"+(date1.getMonth()+1)+"-"+date1.getDate();//time1表示当前时间

    var date2 =new Date(date1);

date2.setDate(date1.getDate()+v);

var time2 =date2.getFullYear()+"-"+(date2.getMonth()+1)+"-"+date2.getDate();

return time2;

}

你可能感兴趣的:(当前日期增加任意天数)