JavaScript Date.getSeconds() メソッドは、現地時間に基づいて、指定された日付の秒を返します。 getSeconds によって返される値は、0 ~ 59 の整数です。
文法
Date.getSeconds()
パラメータの詳細は次のとおりです:
戻り値:
指定された日付の現地時間の秒数を返します。
例:
<html> <head> <title>JavaScript getSeconds Method</title> </head> <body> <script type="text/javascript"> var dt = new Date( "December 25, 1995 23:15:20" ); document.write("getSeconds() : " + dt.getSeconds() ); </script> </body> </html>
これにより、次の結果が生成されます:
getSeconds() : 20