js获取当前时间年月日
时间: 2023-09-21 13:02:30 浏览: 77
JS获取当前时间日期
可以使用 JavaScript 的内置对象 Date 获取当前时间的年月日信息,示例代码如下:
```javascript
const now = new Date();
const year = now.getFullYear();
const month = now.getMonth() + 1;
const day = now.getDate();
console.log(`${year}-${month}-${day}`);
```
以上代码中,`new Date()` 创建了一个表示当前时间的 Date 对象,`getFullYear()` 方法返回年份,`getMonth()` 方法返回月份(0 表示一月,11 表示十二月,所以需要加上 1),`getDate()` 方法返回日期。最后使用模板字符串输出结果,结果格式为 `年-月-日`。
阅读全文