new Date() 只要年月日
时间: 2023-06-14 11:07:43 浏览: 153
java Date获取年月日时分秒的实现方法
你可以使用 JavaScript 中的 `getFullYear()`、`getMonth()` 和 `getDate()` 方法来获取当前日期的年、月和日。例如:
```javascript
const now = new Date();
const year = now.getFullYear();
const month = now.getMonth() + 1; // 注意月份从0开始,需要加1
const day = now.getDate();
console.log(`${year}-${month}-${day}`);
```
输出的结果类似于:`2021-10-26`。
阅读全文