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


当前回答

除了其他选项,如果您想要日期格式ISO,可以直接获取

console.log(newDate().toISOString());

其他回答

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

var d = new Date();
console.log(d.valueOf()); 

var my_timestamp=~~(Date.now()/1000);

这一个有一个解决方案:在js中将unixtime stamp转换为tim

var a = new Date(UNIX_timestamp*1000);
var hour = a.getUTCHours();
var min = a.getUTCMinutes();
var sec = a.getUTCSeconds();
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())));
}