date.setUTCSeconds
date.setUTCSeconds
此 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.
例子
Using setUTCSeconds()
var theBigDay = new Date(
theBigDay.setUTCSeconds(20
规格
Specification | Status | Comment |
---|---|---|
ECMAScript 1st Edition (ECMA-262) | Standard | Initial definition. Implemented in JavaScript 1.3. |
ECMAScript 5.1 (ECMA-262)The definition of 'Date.prototype.setUTCSeconds' in that specification. | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Date.prototype.setUTCSeconds' in that specification. | Standard | |
ECMAScript Latest Draft (ECMA-262)The definition of 'Date.prototype.setUTCSeconds' in that specification. | Draft | |
浏览器兼容性
Feature | Chrome | Firefox | Edge | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |