JavaScript setSeconds() 方法

Date 对象参考手册 JavaScript Date 对象

实例

把当前时间的秒字段设置为 35:

var d = new Date();
d.setSeconds(35);

d 输出结果:

点我分享笔记