--- title: Date.prototype.getUTCSeconds() slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds ---
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. |
{{SpecName('ES5.1', '#sec-15.9.5.23', 'Date.prototype.getUTCSeconds')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-date.prototype.getutcseconds', 'Date.prototype.getUTCSeconds')}} | {{Spec2('ES6')}} |
{{Compat("javascript.builtins.Date.getUTCSeconds")}}