下面有更多 "亲自试一试" 示例。
Date.UTC() 方法根据 UTC 返回指定日期与 1970 年 1 月 1 日午夜之间的毫秒数。
UTC(通用协调时间)是世界时间标准设定的时间。
UTC 时间与 GMT 时间(格林威治标准时间)相同。
Date.UTC()
是 ECMAScript1 (ES1) 功能。
所有浏览器均完全支持 ES1 (JavaScript 1997):
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
Date.UTC(
year,
month,
day,
hours,
minutes,
seconds,
millisec)
Date.UTC() 是 Date 对象的静态方法。
您不能在 d.UTC() 这样的日期上使用它
语法始终为 Date.UTC()。
Parameter | Description |
---|---|
year | Required. A four-digit value representing the year, negative values are allowed |
month | Required. An integer representing the month Expected values are 0-11, but other values are allowed:
|
day | Optional. An integer representing the day of month Expected values are 1-31, but other values are allowed:
If the month has 31 days:
If the month has 30 days:
|
hour | Optional. Default 0. An integer representing the hour. Expected values are 0-23, but other values are allowed:
|
min | Optional. Default 0. An integer representing the minutes. Expected values are 0-59, but other values are allowed:
|
sec | Optional. Default 0. An integer representing the seconds Expected values are 0-59, but other values are allowed:
|
millisec | Optional. Default 0. An integer representing the milliseconds Expected values are 0-999, but other values are allowed:
|
返回值: | 一个数字,表示指定日期时间与 1970 年 1 月 1 日午夜之间的毫秒数 |
---|---|
JavaScript 版本: | ECMA脚本1 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!