vue 获取当前日期及前N天的日期
var tempDate = new Date() // 获取今天的日期tempDate.setDate(tempDate.getDate() - N) // 今天的前N天的日期,N自定义endDate = tempDate.getFullYear + ’-‘ + (tempDate.getMonth() + 1) + '-' + tempDate.getDate()console.log(end
·
var tempDate = new Date() // 获取今天的日期
tempDate.setDate(tempDate.getDate() - N) // 今天的前N天的日期,N自定义
endDate = tempDate.getFullYear() + ’-‘ + (tempDate.getMonth() + 1) + '-' + tempDate.getDate()
console.log(endDate)
更多推荐
已为社区贡献6条内容
所有评论(0)