目录

JavaScript Date setSeconds()

示例

将秒设置为 35:

const d = new Date();
d.setSeconds(35);
亲自试一试 »

下面有更多 "亲自试一试" 示例。


描述

setSeconds() 方法设置日期对象的秒数。

该方法也可用于设置毫秒。


浏览器支持

setSeconds()是 ECMAScript1 (ES1) 功能。

所有浏览器均完全支持 ES1 (JavaScript 1997):

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes

语法

Date.setSeconds( sec, millisec)

参数值

Parameter Description
sec Required. An integer representing the seconds

Expected values are 0-59, but other values are allowed:

  • -1 will result in the last second of the previous minute
  • 60 will result in the first second of the next minute
millisec Optional. An integer representing the milliseconds

Expected values are 0-999, but other values are allowed:

  • -1 will result in the last millisecond of the previous second
  • 1000 will result in the first millisecond of the next second


技术细节

返回值: 一个数字,表示日期对象与 1970 年 1 月 1 日午夜之间的毫秒数
JavaScript 版本: ECMA脚本1

更多示例

示例

设置秒和毫秒:

const d = new Date();
d.setSeconds(35, 825);
亲自试一试 »