JavaScript – setSeconds()方法
描述
Javascript日期 setSeconds() 方法根据本地时间设置指定日期的秒数。
语法
其语法如下−
Date.setSeconds(secondsValue[, msValue])
注意 − 括号中的参数始终是可选的。
参数详解
- secondsValue − 介于0和59之间的整数。
-
msValue − 0到999之间的数字,代表毫秒。
如果未指定msValue
参数,则使用从getMilliseconds
方法返回的值。如果您指定的参数超出了预期范围,则setSeconds
会相应地尝试更新Date
对象中的日期信息。例如,如果您使用100作为secondsValue
,则存储在Date
对象中的分钟将增加1,并使用40作为秒。
示例
请尝试以下示例。
<html>
<head>
<title>JavaScript setSeconds Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date( "Aug 28, 2008 23:30:00" );
dt.setSeconds( 80 );
document.write( dt );
</script>
</body>
</html>
输出
Thu Aug 28 2008 23:31:20 GMT+0530 (India Standard Time)