在JavaScript中以Hours24:Minutes:Seconds格式获取当前UTC时间

本文介绍了如何使用JavaScript的Date类库函数获取当前的UTC时间,包括小时、分钟和秒,并提供了一个示例代码,展示了如何将这些信息格式化为24小时制的时间格式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在JavaScript中获取当前UTC时间 (Getting current UTC time in JavaScript)

To get the current UTC time in JavaScript, we need to use three library functions of Date class,

要使用JavaScript获取当前UTC时间 ,我们需要使用Date类的三个库函数,

  1. Date getUTCHours() Method – It returns current UTC hours

    Date getUTCHours()方法 –返回当前UTC时间

  2. Date getUTCMinutes() Method – It returns current UTC minutes

    Date getUTCMinutes()方法 –返回当前UTC分钟

  3. Date getUTCSeconds() Method – It returns current UTC seconds

    Date getUTCSeconds()方法 –返回当前UTC秒

Note: To call these functions, we need to create an object to the Date class using Date class constructor.

注意:要调用这些函数,我们需要使用Date类的构造函数为Date类创建一个对象。

Examples:

例子:

    Date class constructor:
    var dt = new Date();

    Function calls:
    dt.getUTCHours();
    dt.getUTCMinues();
    dt.getUTCSeconds();
    
    Output:
    18
    22
    38

JavaScript code to get the current UTC time in Hours24: Minutes: Seconds format

JavaScript代码以Hours24:Minutes:Seconds格式获取当前UTC时间

<html>
<head><title>JavaScipt Example</title></head>

<body>
<script>
	var dt = new Date(); //Date constructor 
	var hh = dt.getUTCHours();
	var mm = dt.getUTCMinutes();
	var ss = dt.getUTCSeconds();
	//printing time
	document.write("Current UTC time is= " + hh + ":" + mm + ":" + ss + "<br>");
</script>
</body>
</html>

Output

输出量

Current UTC time is= 18:22:38


翻译自: https://www.includehelp.com/code-snippets/get-current-utc-time-in-hours24-minutes-seconds-format-in-javascript.aspx

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值