js 获取时间并转换为yy-mm-dd hh:mm:ss 前端当前日期转换
时间: 2024-05-03 10:22:00 浏览: 60
js时间类型转化(yyy-mm-dd hh:mm:ss)
为 yy-mm-dd hh:mm:ss 的方法如下:
```javascript
// 获取当前时间
const now = new Date();
// 将日期转换为 yy-mm-dd 格式
const year = now.getFullYear(); // 年
const month = now.getMonth() + 1 < 10 ? '0' + (now.getMonth() + 1) : now.getMonth() + 1; // 月
const day = now.getDate() < 10 ? '0' + now.getDate() : now.getDate(); // 日
const date = year + '-' + month + '-' + day;
// 将时间转换为 hh:mm:ss 格式
const hour = now.getHours() < 10 ? '0' + now.getHours() : now.getHours(); // 小时
const minute = now.getMinutes() < 10 ? '0' + now.getMinutes() : now.getMinutes(); // 分钟
const second = now.getSeconds() < 10 ? '0' + now.getSeconds() : now.getSeconds(); // 秒
const time = hour + ':' + minute + ':' + second;
// 合并日期和时间
const dateTime = date + ' ' + time; // yyyy-mm-dd hh:mm:ss
```
使用以上代码可以获取当前时间并转换为 yy-mm-dd hh:mm:ss 格式。
阅读全文