--- title: Date.prototype.setSeconds() slug: Web/JavaScript/Reference/Global_Objects/Date/setSeconds translation_of: Web/JavaScript/Reference/Global_Objects/Date/setSeconds ---
setSeconds()
方法根据本地时间设置一个日期对象的秒数。
dateObj.setSeconds(secondsValue[, msValue])
dateObj.setSeconds(secondsValue)
secondsValue
msValue
如果没有指定 msValue
参数,就会使用 {{jsxref("Date.getMilliseconds", "getMilliseconds()")}} 方法的返回值。
如果一个参数超出了合理范围, setSeconds
方法会相应地更新日期对象的时间信息。例如,为 secondsValue
指定 100,则日期对象的分钟数会相应地加 1,秒数将会使用 40。
setSeconds方法
var theBigDay = new Date(); theBigDay.setSeconds(30)
规范版本 | 规范状态 | 注解 |
---|---|---|
ECMAScript 1st Edition. Implemented in JavaScript 1.0 | Standard | Initial definition. |
{{SpecName('ES5.1', '#sec-15.9.5.30', 'Date.prototype.setSeconds')}} | {{Spec2('ES5.1')}} | |
{{SpecName('ES6', '#sec-date.prototype.setseconds', 'Date.prototype.setSeconds')}} | {{Spec2('ES6')}} |
{{Compat("javascript.builtins.Date.setSeconds")}}