前端js获取当前时间格式为yyyy-mm-dd hh:mm:ss
时间: 2023-09-24 16:13:18 浏览: 141
在前端使用 JavaScript 获取当前时间并格式化为 "yyyy-mm-dd hh:mm:ss" 的格式,可以使用以下代码:
```javascript
// 获取当前时间
var currentDate = new Date();
// 获取年、月、日、小时、分钟、秒
var year = currentDate.getFullYear();
var month = (currentDate.getMonth() + 1 < 10 ? '0' : '') + (currentDate.getMonth() + 1);
var day = (currentDate.getDate() < 10 ? '0' : '') + currentDate.getDate();
var hours = (currentDate.getHours() < 10 ? '0' : '') + currentDate.getHours();
var minutes = (currentDate.getMinutes() < 10 ? '0' : '') + currentDate.getMinutes();
var seconds = (currentDate.getSeconds() < 10 ? '0' : '') + currentDate.getSeconds();
// 格式化时间
var formattedDate = year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds;
// 输出格式化后的时间
console.log(formattedDate);
```
以上代码将会输出当前时间的格式化结果,例如 "2022-01-01 14:30:45"。
阅读全文