您现在的位置: 万盛学电脑网 >> 程序编程 >> 脚本专题 >> javascript >> 正文

JavaScript输出当前时间Unix时间戳的方法

作者:佚名    责任编辑:admin    更新时间:2022-06-22

 具体如下:

下面的代码通过Date对象的getTime()放回unix时间戳,即从1970年1月1日到当前时间的秒数

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <!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>