如何使用Javascript获取距今n天前的日期_javascript技巧
发布网友
发布时间:2023-08-22 15:42
我来回答
共1个回答
热心网友
时间:2023-09-12 17:37
代码如下:
function Test(day) {
var today = new Date();
var beforMilliseconds = today.getTime() - 1000 * 3600 * 24 * day;
var beforday = new Date();
beforday.setTime(beforMilliseconds);
var strYear = beforday.getFullYear();
var strDay = beforday.getDate();
var strMonth = beforday.getMonth() + 1;
if (strMonth < 10) {
strMonth = "0" + strMonth;
}
var strYesterday = strYear + "-" + strMonth + "-" + strDay;
alert(strYesterday);
}