JavaScript date setUTCSeconds() 方法根据世界协调时间设置指定日期的秒数。
setUTCSeconds(secondsValue[, msValue]) 方法的参数如下:
您可以尝试运行以下代码来设置指定日期的秒数:
<html> <head> <title>JavaScript setUTCSeconds Method</title> </head> <body> <script> var dt = new Date( "Aug 28, 2008 13:30:00" ); dt.setUTCSeconds( 65 ); document.write( dt ); </script> </body> </html>
以上是根据世界标准时间为指定日期设置秒数的详细内容。更多信息请关注PHP中文网其他相关文章!