js获取当前时间年月日时分秒
时间: 2023-08-14 16:10:22 浏览: 146
js中获取年月日时分秒
您可以使用JavaScript的Date对象来获取当前时间的年、月、日、时、分、秒。以下是一个示例代码:
```javascript
// 创建一个Date对象
var currentDate = new Date();
// 获取年份
var year = currentDate.getFullYear();
// 获取月份,注意月份从0开始,需要加1
var month = currentDate.getMonth() + 1;
// 获取日期
var day = currentDate.getDate();
// 获取小时
var hours = currentDate.getHours();
// 获取分钟
var minutes = currentDate.getMinutes();
// 获取秒数
var seconds = currentDate.getSeconds();
// 打印结果
console.log("当前时间:" + year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds);
```
上述代码将打印出当前时间的年、月、日、时、分、秒。请注意,月份从0开始计算,因此需要加1来得到实际的月份。
阅读全文