📅  最后修改于: 2023-12-03 14:42:37.531000             🧑  作者: Mango
在Javascript中,我们可以通过内置的Date()
对象来获取当前的时间,并通过各种方法来格式化时间。下面我们将介绍如何获取24小时时间。
要获取当前的时间,我们可以使用new Date()
语句,它将返回一个包含当前日期和时间的Date
对象。
const now = new Date();
console.log(now); // 输出当前日期和时间
要获取当前的小时,我们可以使用getHours()
方法。它返回的是当前日期的小时数,从0到23。
const now = new Date();
const hours = now.getHours();
console.log(hours); // 输出当前小时数
我们可以使用一些简单的代码来将小时数格式化为两位数。例如,如果当前小时数是9,则我们可以通过添加一个前导零来将其格式化为'09'。
const now = new Date();
const hours = now.getHours().toString().padStart(2, '0');
console.log(hours); // 输出当前小时数(格式化为两位数)
通过使用Date
对象和getHours()
方法,我们可以轻松获取当前的24小时时间,并将其格式化为所需的格式。下面是完整的代码示例:
const now = new Date();
const hours = now.getHours().toString().padStart(2, '0');
const minutes = now.getMinutes().toString().padStart(2, '0');
const seconds = now.getSeconds().toString().padStart(2, '0');
const time = `${hours}:${minutes}:${seconds}`;
console.log(time); // 输出当前24小时时间,格式为hh:mm:ss
以上就是获取24小时时间的介绍,希望对你有所帮助。