js 获取 年月日时分秒 格式时间
时间: 2023-11-17 21:05:04 浏览: 89
日期,时间格式,年月日时分秒星期JAVAScript代码
你可以使用 JavaScript 内置的 Date 对象来获取当前时间,然后通过一些方法来获取年月日时分秒格式的时间。
以下是一个获取年月日时分秒格式时间的示例代码:
```javascript
const now = new Date();
const year = now.getFullYear();
const month = now.getMonth() + 1;
const date = now.getDate();
const hour = now.getHours();
const minute = now.getMinutes();
const second = now.getSeconds();
const time = `${year}-${month}-${date} ${hour}:${minute}:${second}`;
console.log(time); // 输出:2021-10-12 15:30:00
```
在这个代码中,我们首先创建了一个 Date 对象来获取当前时间。然后,使用 Date 对象的一些方法来获取年、月、日、时、分、秒等时间信息,并将它们拼接成一个年月日时分秒格式的时间字符串。最后,使用 console.log() 函数将时间字符串输出到控制台。
注意,这个示例代码中获取月份时需要加 1,因为 JavaScript 中的月份是从 0 开始计数的。
阅读全文