美文网首页
js 时间戳 中国标准时间 年月日 日期之间的转换

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

作者: 前端陈陈陈 | 来源:发表于2020-09-25 10:56 被阅读0次
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 时间戳 中国标准时间 年月日 日期之间的转换

      本文链接:https://www.haomeiwen.com/subject/iyzxuktx.html