这篇翻译不完整。请帮忙从英语翻译这篇文章。
概述
getUTCSeconds()
方法以世界时为标准,返回一个指定的日期对象的秒数。
语法
dateObj.getUTCSeconds()
参数
无。
返回值
getUTCSeconds()
返回一个 0 到 59 的整数。
例子
例子: 使用 getUTCSeconds()
方法
下例将当前时间的秒数部分赋值给变量 seconds
。
var today = new Date(); var seconds = today.getUTCSeconds();
规范
规范版本 | 规范状态 | 注解 |
---|---|---|
ECMAScript 1st Edition. | Standard | Initial definition. Implemented in JavaScript 1.3. |
ECMAScript 5.1 (ECMA-262) Date.prototype.getUTCSeconds |
Standard | |
ECMAScript 6 (ECMA-262) Date.prototype.getUTCSeconds |
Release Candidate |
浏览器兼容性
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |