javascript 获取当前时间
时间: 2023-11-17 17:59:38 浏览: 96
在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)}`;
阅读全文