//第一種方法 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();
//第一種方法 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();
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。