时间转时间戳:javascript获得时间戳的方法有五种,都是通过实例化时间对象 new Date() 来进一步获取当前的时间戳
var timestamp1 = Date.parse(new Date());
console.log(timestamp1); //输出结果 1477808630000
var timestamp2 = (new Date()).valueOf();
console.log(timestamp2); // 输出结果 1477808630404
var timestamp3 = new Date().getTime();
console.log(timestamp3); // 输出结果 1477808630404
var timetamp4 = Number(new Date()) ;
console.log(timetamp4); // 输出结果 1477808630404
var timetamp5 = Date.now();
console.log(timetamp5); // 输出结果 1477808630404