JS实现简单获取7天后日期方法:
function fun_date(aa)
{
var date1 = new Date(),
time1=date1.getFullYear()+"-"+(date1.getMonth()+1)+"-"+date1.getDate();//time1表示当前时间
var date2 = new Date(date1);
date2.setDate(date1.getDate()+aa);
var time2 = date2.getFullYear()+"-"+
(date2.getMonth()+1)+"-"+date2.getDate();
}
fun_date(7);//7天后的日期
扩展资料
getDate:使用当地时间返回 Date 对象的月份日期值。
getFullYear:使用当地时间返回 Date 对象的年份。
getMonth:使用当地时间返回 Date 对象的月份。