小程序有没有对时间的方法
我想求当前时间 一个星期后的年月日
//当前时间
function getYMDTime(date) {
var year = date.getFullYear()
var month = date.getMonth() + 1
var day = date.getDate()
return year + “-” + month + “-” + day
}
我想求当前时间 一个星期后的年月日
//当前时间
function getYMDTime(date) {
var year = date.getFullYear()
var month = date.getMonth() + 1
var day = date.getDate()
return year + “-” + month + “-” + day
}