首页 > 编程 > JavaScript > 正文

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

2019-11-20 12:45:17
字体:
来源:转载
供稿:网友

本文实例讲述了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>

PS:关于Unix时间戳操作,这里再为大家推荐一个本站的Unix时间戳转换工具,还附带了各种语言(Python/PHP/Java/MySQL等)Unix时间戳的操作方法:

Unix时间戳(timestamp)转换工具:http://tools.VeVB.COm/code/unixtime

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表