美文网首页
时间的几种格式

时间的几种格式

作者: Small_Song | 来源:发表于2021-09-08 16:56 被阅读0次

    1.带T和Z的,如:2019-03-28T12:02:00Z

    // T表示后面开始的是time
    // Z表示时区0
    // 2019-03-28T12:02:00Z表示的时格林尼治时间
    // 2019-03-28T12:02:00表示的时当前时区的这个时间
    var a = new Date('2019-03-28T12:02:00')
    console.log(a)
    Thu Mar 28 2019 12:02:00 GMT+0800 (中国标准时间)
    var a = new Date('2019-03-28T12:02:00Z')
    console.log(a)
    Thu Mar 28 2019 20:02:00 GMT+0800 (中国标准时间)
    // 如上,两个一样的时间,只是后面加了一个Z就导致了8个小时的时差
    

    相关文章

      网友评论

          本文标题:时间的几种格式

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