js 日期格式化YYYY-MM-DD hh:mm:ss
时间: 2024-05-15 09:15:29 浏览: 87
您可以使用JavaScript的Date对象和一些方法来格式化日期。以下是一个将当前日期格式化为YYYY-MM-DD hh:mm:ss格式的示例:
```javascript
// 创建一个新的Date对象
var date = new Date();
// 从Date对象中获取年、月、日、小时、分钟和秒
var year = date.getFullYear();
var month = date.getMonth() + 1;
var day = date.getDate();
var hours = date.getHours();
var minutes = date.getMinutes();
var seconds = date.getSeconds();
// 如果月、日、小时、分钟或秒的值小于10,则在前面加上0
month = month < 10 ? "0" + month : month;
day = day < 10 ? "0" + day : day;
hours = hours < 10 ? "0" + hours : hours;
minutes = minutes < 10 ? "0" + minutes : minutes;
seconds = seconds < 10 ? "0" + seconds : seconds;
// 将日期格式化为YYYY-MM-DD hh:mm:ss
var formattedDate = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
console.log(formattedDate); // 输出当前日期的格式化字符串
```
输出结果可能类似于:2022-08-25 14:30:45。
阅读全文