标签:val 方法 asc gettime date ons date() console log
第一种方法 1498627266000
var timestamp1 =Date.parse(new Date()); console.log(timestamp1);
第二种方法 1498627266558
var timestamp2 =(new Date()).valueOf(); console.log(timestamp2);
第三种方法 1498627266558
var timestamp3 =new Date().getTime(); console.log(timestamp3);
标签:val 方法 asc gettime date ons date() console log
原文地址:https://www.cnblogs.com/whblogs/p/12165015.html