用js写一个代码,计算距离本日前六个月的年月日,前三个月的年月日,前一年的年月日
时间: 2023-02-19 16:37:02 浏览: 57
js和java返回三个月前的时间
5星 · 资源好评率100%
var today = new Date();
// 计算距离本日前六个月的年月日
var sixMonthsAgo = new Date(today.getFullYear(), today.getMonth() - 6, today.getDate());
// 计算距离本日前三个月的年月日
var threeMonthsAgo = new Date(today.getFullYear(), today.getMonth() - 3, today.getDate());
// 计算距离本日前一年的年月日
var oneYearAgo = new Date(today.getFullYear() - 1, today.getMonth(), today.getDate());
阅读全文