美文网首页
js cookie设置的UTC时区转北京时间

js cookie设置的UTC时区转北京时间

作者: MISS_3ca2 | 来源:发表于2021-05-12 09:24 被阅读0次
    var utc_datetime = "2021-05-14T01:22:21.000Z";
    
    function utc2beijing(utc_datetime) {
        // 转为正常的时间格式 年-月-日 时:分:秒
        var T_pos = utc_datetime.indexOf('T');
        var Z_pos = utc_datetime.indexOf('Z');
        var year_month_day = utc_datetime.substr(0,T_pos);
        var hour_minute_second = utc_datetime.substr(T_pos+1,Z_pos-T_pos-1);
        var new_datetime = year_month_day+" "+hour_minute_second; // 2017-03-31 08:02:06
    
        // 处理成为时间戳
        timestamp = new Date(Date.parse(new_datetime));
        timestamp = timestamp.getTime();
        timestamp = timestamp/1000;
    
        // 增加8个小时,北京时间比utc时间多八个时区
        var timestamp = timestamp+8*60*60;
    
        // 时间戳转为时间
        var beijing_datetime = new Date(parseInt(timestamp) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ");
        return beijing_datetime; // 2017-03-31 16:02:06
    } 
    
    console.log(utc2beijing(utc_datetime));
    

    相关文章

      网友评论

          本文标题:js cookie设置的UTC时区转北京时间

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