js 时间戳 中国标准时间 年月日 日期之间的转换

console.log(new Date()) //获取中国标准时间      //Wed Feb 13 2019 20:15:44 GMT+0800 (中国标准时间)
console.log(new Date().getTime()) //标准时间变为时间戳   //1550060144673
var d = new Date();
var datetime=d.getFullYear() + '' + (d.getMonth() + 1) + '' + d.getDate() + '' + d.getHours() + '' + d.getMinutes() + '' + d.getSeconds();
console.log(datetime)

你可能感兴趣的:(js 时间戳 中国标准时间 年月日 日期之间的转换)