目录

JavaScript Date setUTCMinutes()

示例

根据 UTC 时间,将分钟设置为 17:

const d = new Date();
d.setUTCMinutes(17);
亲自试一试 »

下面有更多 "亲自试一试" 示例。


描述

setUTCMinutes() 方法根据 UTC 设置日期对象的分钟。

笔记

UTC(通用协调时间)是世界时间标准设定的时间。

UTC 时间与 GMT 时间(格林威治标准时间)相同。


浏览器支持

setUTCMinutes()是 ECMAScript1 (ES1) 功能。

所有浏览器均完全支持 ES1 (JavaScript 1997):

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes

语法

Date.setUTCMinutes( min, sec, millisec)

参数值

Parameter Description
min Required. An integer representing the minutes.

Expected values are 0-59, but other values are allowed:

  • -1 will result in the last minute of the previous hour
  • 60 will result in the first minute of the next hour
sec Optional. An integer representing the seconds

Expected values are 0-59, but other values are allowed:

  • -1 will result in the last second of the previous minute
  • 60 will result in the first second of the next minute
millisec Optional. An integer representing the milliseconds

Expected values are 0-999, but other values are allowed:

  • -1 will result in the last millisecond of the previous second
  • 1000 will result in the first millisecond of the next second


技术细节

返回值: 一个号码。

该日期与 1970 年 1 月 1 日 00:00:00 UTC 之间的毫秒数。

更多示例

示例

将日期时间设置为 90 分钟,使用 UTC 方法:

const d = new Date();
d.setUTCMinutes(d.getUTCMinutes() - 90);
亲自试一试 »