以 2021-07-13 12:12:12 的格式 用JS写一个新的时间出来
时间: 2024-03-03 22:47:06 浏览: 71
使用js显示时间
你可以使用 JavaScript 内置的 `Date` 对象来获取当前时间,并使用 `getFullYear`、`getMonth`、`getDate`、`getHours`、`getMinutes` 和 `getSeconds` 方法获取年、月、日、时、分和秒的值,然后拼接成你需要的时间格式。
以下是一个示例:
```
const now = new Date();
const year = now.getFullYear();
const month = String(now.getMonth() + 1).padStart(2, '0');
const day = String(now.getDate()).padStart(2, '0');
const hour = String(now.getHours()).padStart(2, '0');
const minute = String(now.getMinutes()).padStart(2, '0');
const second = String(now.getSeconds()).padStart(2, '0');
const formattedTime = `${year}-${month}-${day} ${hour}:${minute}:${second}`;
console.log(formattedTime);
```
输出结果:
```
2021-07-13 12:12:12
```
这里使用了 `padStart` 方法来保证月、日、时、分和秒都是两位数。如果你需要获取更加精细的时间,比如毫秒,可以使用 `getMilliseconds` 方法。
阅读全文