js 当前时间转为年月日
时间: 2023-09-21 12:10:12 浏览: 120
时间戳转换为时间 年月日时间的JS函数
5星 · 资源好评率100%
要将当前时间转换为年月日的格式,你可以使用 JavaScript 的 Date 对象和相应的方法。下面是一个示例代码,可以将当前时间转换为年月日的格式:
```javascript
const currentDate = new Date();
const year = currentDate.getFullYear();
const month = String(currentDate.getMonth() + 1).padStart(2, '0');
const day = String(currentDate.getDate()).padStart(2, '0');
const formattedDate = `${year}-${month}-${day}`;
console.log(formattedDate);
```
在上述代码中,我们首先创建了一个 Date 对象 `currentDate` 来表示当前时间。然后,使用 `getFullYear()` 方法获取年份,使用 `getMonth()` 方法获取月份(注意,份是从 0 开始计数的,所以需要加 1),使用 `getDate()` 方法获取日期。
接下来,我们使用 `padStart()` 方法来补零,确保月份和日期都是两位数。最后,我们将年、月、日拼接在一起,并打印出结果。
以上代码将输出类似于 "2022-09-23" 的格式,表示当前的年月日。
希望这可以帮助到你!如果你还有其他问题,请随时提问。
阅读全文