Date.prototype.setUTCSeconds()
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.
此 setUTCSeconds()
方法为一个依据国际通用时间的特定日期设置秒数。
尝试一下
语法
dateObj.setUTCSeconds(secondsValue[, msValue])
参数
secondsValue
-
一个在 0 到 59 之间的整数,表示秒数。
msValue
-
可选参数。一个 0 到 999 之间的数字,代表毫秒数。
返回值
一个毫秒数,表示从国际通用时间 1970 年 00:00:00 到设置的时间值之间的时间跨度。
描述
如果你没有设置 msValue 参数的值,那么返回的值来自getUTCMilliseconds()
方法。
如果你指定的值超出了范围,setUTCSeconds()
因此会更新Date
对象中 date 的相关信息 . 举个例子,如果你设置 secondsValue 为 100, Date
对象中的分钟数会增加 1,并且秒数会变成 40.
示例
使用 setUTCSeconds()
js
var theBigDay = new Date();
theBigDay.setUTCSeconds(20);
规范
Specification |
---|
ECMAScript Language Specification # sec-date.prototype.setutcseconds |
浏览器兼容性
BCD tables only load in the browser