Date.prototype.getUTCSeconds()
基线 广泛可用
此功能非常成熟,并在许多设备和浏览器版本中都能正常运行。它自 2015 年 7 月.
报告反馈
尝试一下
语法
The
getUTCSeconds()
method of Date
instances returns the seconds in the specified date according to universal time.getUTCSeconds()
js
参数
无。
返回值
示例
一个介于 0 和 59 之间的整数,表示根据世界标准时间给定日期的秒数。如果日期无效,则返回 NaN
。
使用 getUTCSeconds()
The
getUTCSeconds()
method of Date
instances returns the seconds in the specified date according to universal time.const today = new Date();
const seconds = today.getUTCSeconds();
规范
以下示例将当前时间的秒部分分配给变量 seconds 。 |
---|
规范 # ECMAScript 语言规范 |
浏览器兼容性
sec-date.prototype.getutcseconds