用js编写函数,把当前时间格式化成 YYYY-MM-DD HH-mm-ss
时间: 2024-01-05 15:04:54 浏览: 62
js将日期格式转换为YYYY-MM-DD HH:MM:SS
好的,以下是用 JavaScript 编写的函数,可以将当前时间格式化为 YYYY-MM-DD HH:mm:ss 的形式:
```javascript
function formatDate() {
const date = new Date();
const year = date.getFullYear();
const month = (date.getMonth() + 1).toString().padStart(2, '0');
const day = date.getDate().toString().padStart(2, '0');
const hours = date.getHours().toString().padStart(2, '0');
const minutes = date.getMinutes().toString().padStart(2, '0');
const seconds = date.getSeconds().toString().padStart(2, '0');
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
}
```
请问,还有什么问题我可以帮到您?
阅读全文