js代码输出当前时间Unix时间戳-JavaScript语言
下面的代码通过Date对象的getTime()放回unix时间戳,即从1970年1月1日到当前时间的秒数
<p id="demo">Click the button to display the number of milliseconds since midnight, January 1, 1970.</p> <button>Try it</button> function myFunction() { var d = new Date(); var x = document.getElementById("demo"); x.innerHTML=d.getTime(); }