Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Date.prototype.setUTCSeconds()

这篇翻译不完整。请帮忙从英语翻译这篇文章

此 setUTCSeconds() 方法为一个依据国际通用时间的特定日期设置秒数。

语法

dateObj.setUTCSeconds(secondsValue[, msValue])

参数

secondsValue
一个在0到59之间的整数,表示秒数。
msValue
可选参数。一个0到999之间的数字,代表毫秒数。

返回值

一个毫秒数,表示从国际通用时间1970年00:00:00到设置的时间值之间的时间跨度。

Description

如果你没有设置msValue参数的值, 那么返回的值就是从getUTCMilliseconds() 方法而来.

如果你指定的值超出了范围, setUTCSeconds() 因此会更新Date 对象中date的相关信息 . 举个例子, 如果你设置secondsValue为100, Date 对象中的分钟数会增加1, 并且秒数会变成40.

示例

使用 setUTCSeconds()

var theBigDay = new Date();
theBigDay.setUTCSeconds(20);

说明

说明 状态 备注
ECMAScript 1st Edition (ECMA-262) Standard 初始化设定. 从 JavaScript 1.3继承.
ECMAScript 5.1 (ECMA-262)
Date.prototype.setUTCSeconds
Standard  
ECMAScript 2015 (6th Edition, ECMA-262)
Date.prototype.setUTCSeconds
Standard  
ECMAScript 2017 Draft (ECMA-262)
Date.prototype.setUTCSeconds
Draft  

浏览器适配

特点 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基础支持  (Yes) (Yes) (Yes) (Yes) (Yes)
特点 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基础支持  (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

另请参阅

文档标签和贡献者

标签: 
 此页面的贡献者: petrelselina
 最后编辑者: petrelselina,