JavaScript获取系统时间
时间: 2023-09-21 13:07:44 浏览: 97
可以使用JavaScript内置的Date对象来获取系统时间。以下是获取当前时间的示例代码:
```javascript
var currentDate = new Date();
console.log(currentDate);
```
这将输出当前日期和时间,例如:
```
Tue Aug 10 2021 15:57:12 GMT+0800 (中国标准时间)
```
你还可以使用Date对象的方法来获取特定的日期和时间信息,例如:
```javascript
var currentDate = new Date();
var year = currentDate.getFullYear();
var month = currentDate.getMonth() + 1;
var day = currentDate.getDate();
var hour = currentDate.getHours();
var minute = currentDate.getMinutes();
var second = currentDate.getSeconds();
console.log(year + '-' + month + '-' + day + ' ' + hour + ':' + minute + ':' + second);
```
这将输出当前日期和时间,格式为"年-月-日 时:分:秒",例如:
```
2021-8-10 15:57:12
```
阅读全文