ES6 - setSeconds() 方法



JavaScript 的 date setSeconds() 方法根据本地时间设置指定日期的秒数。

语法

Date.setSeconds(secondsValue[, msValue])        

参数

  • secondsValue − 0 到 59 之间的整数。

  • msValue − 0 到 999 之间的数字,表示毫秒。

如果您未指定 msValue 参数,则使用 getMilliseconds 方法返回的值。如果指定的参数超出预期范围,则 setSeconds 会尝试相应地更新 Date 对象中的日期信息。例如,如果您对 secondsValue 使用 100,则存储在 Date 对象中的分钟将加 1,并且将对秒使用 40。

示例

var dt = new Date( "Aug 28, 2008 23:30:00" ); 
dt.setSeconds( 80 ); 
console.log( dt );       

输出

Thu Aug 28 2008 23:31:20 GMT+0530 (India Standard Time)      
广告