前端获取当前时间年月日
时间: 2023-01-30 18:27:00 浏览: 64
要在前端获取当前的年月日,可以使用 JavaScript 的 Date 对象。例如:
```
const date = new Date();
const year = date.getFullYear();
const month = date.getMonth() + 1; // getMonth 返回的月份是从 0 开始的,所以要加 1
const day = date.getDate();
console.log(`今天是${year}年${month}月${day}日`);
```
这样就可以得到当前的年月日了。
阅读全文