手记

js 时间与时间戳的转换

时间转时间戳
Date.parse(new Date());
(new Date()).valueOf();
new Date().getTime();
Number(new Date()) ;
时间戳转时间
var timestamp4 = new Date(1472048779952);//直接用 new Date(时间戳) 格式转化获得当前时间

console.log(timestamp4);

console.log(timestamp4.toLocaleDateString().replace(///g, “-”) + " " + timestamp4.toTimeString().substr(0, 8)); //再利用拼接正则等手段转化为yyyy-MM-dd hh:mm:ss 格式(toLocaleDateString读取date对象中的日期格式为为yyyy/MM/dd形式,toTimeString读取date对象中的时间,格式类似于"22:26:19 GMT+0800 (中国标准时间)")

0人推荐
随时随地看视频
慕课网APP