我想要一个表示当前日期和时间的数字,比如Unix时间戳。


当前回答

有很多方法可以做到这一点。

 Date.now() 
 new Date().getTime() 
 new Date().valueOf()

要获取以秒为单位的时间戳,请使用以下方法进行转换:

Math.floor(Date.now() / 1000)

其他回答

time = Math.round(((new Date()).getTime()-Date.UTC(1970,0,1))/1000);
var d = new Date();
console.log(d.valueOf()); 
function getTimeStamp() {
    var now = new Date();
    return ((now.getMonth() + 1) + '/' +
            (now.getDate()) + '/' +
             now.getFullYear() + " " +
             now.getHours() + ':' +
             ((now.getMinutes() < 10)
                 ? ("0" + now.getMinutes())
                 : (now.getMinutes())) + ':' +
             ((now.getSeconds() < 10)
                 ? ("0" + now.getSeconds())
                 : (now.getSeconds())));
}

console.log(newDate().valueOf());//返回自epoch以来的毫秒数

//如果你需要10位数alert('timestamp'+ts());函数ts(){return parseInt(Date.now()/1000);}