js获取当前时间的前一天
时间: 2023-10-10 14:06:56 浏览: 105
js获得当前时间
要在JavaScript中获取当前时间的前一天,可以使用Date对象的方法。下面是一种实现方式:
```javascript
// 获取当前时间
let currentDate = new Date();
// 将当前日期减去一天
currentDate.setDate(currentDate.getDate() - 1);
// 获取前一天的年、月、日
let year = currentDate.getFullYear();
let month = currentDate.getMonth() + 1; // 月份从0开始,需加1
let day = currentDate.getDate();
// 格式化前一天的日期
let formattedDate = year + '-' + month + '-' + day;
console.log(formattedDate);
```
上述代码将获取到前一天的日期,并以'YYYY-MM-DD'的格式输出。你可以根据需要进行进一步的处理和展示。
阅读全文