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