JavaScript输出当前时间Unix时间戳的方法
2015-04-08来源:

具体如下:

下面的代码通过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>

更多信息请查看IT技术专栏

2025公考·省考培训课程试听预约报名

  • 报班类型
  • 姓名
  • 手机号
  • 验证码
推荐信息
Baidu
map