如何使用 JavaScript 获取毫秒时间戳?
要获取毫秒时间戳,请使用 Date getMilliseconds() 方法。JavaScript date getMilliseconds() 方法会根据本地时间返回指定日期中的毫秒数。getMilliseconds() 返回的值介于 0 和 999 之间。
示例
你可以尝试运行以下代码来获取毫秒时间戳:
<html> <head> <title>JavaScript getMilliseconds() Method</title> </head> <body> <script> var dt = new Date( ); document.write("getMilliseconds() : " + dt.getMilliseconds() ); </script> </body> </html>
广告