如何在JavaScript中获取当前日期加上15天后,并将其格式化为'YYYY-MM-DD'的形式?
时间: 2024-10-22 19:11:44 浏览: 23
Javascript将字符串日期格式化为yyyy-mm-dd的方法
5星 · 资源好评率100%
在JavaScript中,你可以使用`Date`对象以及一些日期处理函数来获取当前日期加上15天后的结果并按照'YYYY-MM-DD'格式显示。以下是一个简单的示例:
```javascript
// 获取当前日期
let currentDate = new Date();
// 加上15天
currentDate.setDate(currentDate.getDate() + 15);
// 设置日期格式为 'YYYY-MM-DD'
let formattedDate = currentDate.getFullYear() + '-' + (currentDate.getMonth()+1) < 10 ? '0' : '' + (currentDate.getMonth()+1) + '-' + currentDate.getDate();
console.log(formattedDate);
```
这段代码首先创建了一个`Date`对象表示当前日期,然后通过`.setDate()`方法增加15天。接着,它使用`.getFullYear()`, `.getMonth()`和`.getDate()`方法获取年、月和日,并将月份转换为两位数形式。最后,将所有部分拼接成所需的格式。
阅读全文