在前端对时间进行格式化转为String类型字符串
时间: 2023-04-03 13:04:56 浏览: 149
前端页面格式化时间、时间字符串解析
可以使用 JavaScript 中的 Date 对象和其相关方法来对时间进行格式化转换为字符串类型。例如:
```javascript
const date = new Date();
const year = date.getFullYear();
const month = date.getMonth() + 1;
const day = date.getDate();
const hour = date.getHours();
const minute = date.getMinutes();
const second = date.getSeconds();
const formattedDate = `${year}-${month}-${day} ${hour}:${minute}:${second}`;
console.log(formattedDate); // 输出格式化后的时间字符串
```
以上代码将当前时间格式化为 "年-月-日 时:分:秒" 的字符串形式。
阅读全文