js 获取当前时间
时间: 2023-11-16 12:54:31 浏览: 52
可以使用 JavaScript 中的 Date 对象来获取当前时间。具体代码如下:
```javascript
const now = new Date();
console.log(now);
```
输出结果类似于:
```
2021-08-31T07:30:00.000Z
```
其中,`T` 表示时间的分隔符,`Z` 表示 UTC 时间。
相关问题
javascript 获取当前时间
在JavaScript中,有多种方法可以获取当前时间。以下是三种常用的方法:
1. 使用Date对象:可以使用Date对象的方法来获取当前时间,然后将其格式化为需要的字符串格式。例如:const now = new Date(); const formattedTime = now.getFullYear() + ('0' + (now.getMonth() + 1)).slice(-2) + ('0' + now.getDate()).slice(-2) + ('0' + now.getHours()).slice(-2) + ('0' + now.getMinutes()).slice(-2) + ('0' + now.getSeconds()).slice(-2);
2. 使用Moment.js库:Moment.js是一个流行的JavaScript日期库,它提供了许多日期和时间操作方法。可以使用该库的方法来获取当前时间并将其格式化为需要的字符串格式。例如:const moment = require('moment'); const formattedTime = moment().format('YYYYMMDDHHmmss');
3. 使用ES6的新特性:可以使用ES6的新特性来获取当前时间,例如:const now = new Date(); const formattedTime = `${now.getFullYear()}${('0' + (now.getMonth() + 1)).slice(-2)}${('0' + now.getDate()).slice(-2)}${('0' + now.getHours()).slice(-2)}${('0' + now.getMinutes()).slice(-2)}${('0' + now.getSeconds()).slice(-2)}`;
javascript获取当前时间
您可以使用JavaScript内置的Date对象来获取当前时间。以下是获取当前时间的代码:
```javascript
var currentDate = new Date();
```
这将创建一个表示当前日期和时间的Date对象。您可以通过调用Date对象的各种方法来获取特定部分的时间,如小时,分钟,秒等。例如:
```javascript
var currentHour = currentDate.getHours(); //获取当前小时数(0-23)
var currentMinute = currentDate.getMinutes(); //获取当前分钟数(0-59)
var currentSecond = currentDate.getSeconds(); //获取当前秒数(0-59)
```
您也可以通过调用Date对象的toString()方法来获取格式化的日期和时间:
```javascript
var formattedDate = currentDate.toString(); //获取格式化的日期和时间
```
阅读全文