Date.prototype.getUTCHours()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

getUTCHours() 方法以世界时为标准,返回一个指定的日期对象的小时数。

尝试一下

const date1 = new Date("December 31, 1975, 23:15:30 GMT+11:00");
const date2 = new Date("December 31, 1975, 23:15:30 GMT-11:00");

console.log(date1.getUTCHours());
// Expected output: 12

console.log(date2.getUTCHours());
// Expected output: 10

语法

dateObj.getUTCHours()

参数

无。

返回值

getUTCHours() 返回一个 0 到 23 的整数。

示例

示例:使用 getUTCHours() 方法

下例将当前时间的小时部分赋值给变量 hours

js
var today = new Date();
var hours = today.getUTCHours();

规范

Specification
ECMAScript® 2025 Language Specification
# sec-date.prototype.getutchours

浏览器兼容性

Report problems with this compatibility data on GitHub
desktopmobileserver
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
Deno
Node.js
getUTCHours

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

参见