目录

JavaScript Date setUTCDate()

示例

根据 UTC 设置该月的日期:

const d = new Date();
d.setUTCDate(15);
亲自试一试 »

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


描述

setUTCDate() 方法根据 UTC 设置 Date 对象的日期。

笔记

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

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


浏览器支持

setUTCDate()是 ECMAScript1 (ES1) 功能。

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

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

语法

Date.setUTCDate( day)

参数值

Parameter Description
day Required. An integer representing the day of a month.

Expected values are 1-31, but other values are allowed:

  • 0 will result in the last day of the previous month
  • -1 will result in the day before the last day of the previous month

If the month has 31 days:

  • 32 will result in the first day of the next month

If the month has 30 days:

  • 32 will result in the second day of the next month


技术细节

返回值: 一个数字,表示日期对象与 1970 年 1 月 1 日午夜之间的毫秒数
JavaScript 版本: ECMA脚本1

更多示例

示例

将月份的日期设置为上个月的最后一天:

const d = new Date();
d.setUTCDate(0);
亲自试一试 »

示例

将月份中的某一天设置为指定日期:

const d = new Date("July 21, 1983 01:15:00");
d.setUTCDate(15);
亲自试一试 »