JS获取当前年月日时分秒
时间: 2024-11-15 07:32:35 浏览: 17
js中获取年月日时分秒
在JavaScript中,你可以使用内置的`Date`对象来获取当前的年、月、日、时、分和秒。以下是获取这些信息的方法:
```javascript
let now = new Date(); // 创建一个表示当前时间的Date对象
let year = now.getFullYear(); // 当前年份
let month = now.getMonth() + 1; // 月份(注意getMonth返回的是0到11的值,所以加1)
let day = now.getDate(); // 当前日期
let hours = now.getHours(); // 当前小时数(0-23)
let minutes = now.getMinutes(); // 当前分钟数
let seconds = now.getSeconds(); // 当前秒数
// 如果你想按照"yyyy-mm-dd HH:mm:ss"这样的格式显示出来,可以这样做:
let formattedDateTime = `${year}-${month < 10 ? '0' : ''}${month}-${day < 10 ? '0' : ''}${day} ${hours}:${minutes}:${seconds}`;
console.log(formattedDateTime);
```
阅读全文