javascript Date.getMilliseconds()方法依照本地時間傳回指定日期的毫秒數。透過getMilliseconds回傳的是一個介於0和999的值。
文法
Date.getMilliseconds()
以下是參數的詳細資訊:
傳回值:
依照本地時間傳回指定日期的毫秒數。
範例:
<html> <head> <title>JavaScript getMilliseconds Method</title> </head> <body> <script type="text/javascript"> var dt = new Date( ); document.write("getMilliseconds() : " + dt.getMilliseconds() ); </script> </body> </html>
這將產生以下結果:
getMilliseconds() : 578