格式化js new date
时间: 2023-10-01 18:11:50 浏览: 113
js 日期 format 格式化
5星 · 资源好评率100%
可以使用以下代码格式化 JavaScript 中的 Date 对象:
```javascript
const date = new Date();
const formattedDate = `${date.getMonth() + 1}/${date.getDate()}/${date.getFullYear()} ${date.getHours()}:${date.getMinutes()}:${date.getSeconds()}`;
console.log(formattedDate);
```
这将输出形如 `9/14/2021 18:30:15` 的日期字符串。其中, `getMonth()` 方法返回的月份是从 0 开始计数的,所以需要加上 1。同时,需要注意日期和时间之间的空格和格式。
阅读全文