Posted in Javascript onApril 06, 2015
本文实例讲述了JavaScript输出当前时间Unix时间戳的方法。分享给大家供大家参考。具体如下:
下面的代码通过Date对象的getTime()放回unix时间戳,即从1970年1月1日到当前时间的秒数
<!DOCTYPE html> <html> <body> <p id="demo"> Click the button to display the number of milliseconds since midnight, January 1, 1970.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var d = new Date(); var x = document.getElementById("demo"); x.innerHTML=d.getTime(); } </script> </body> </html>
JavaScript输出当前时间Unix时间戳的方法
- Author -
work24声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@