美文网首页
JS毫秒时间戳转时间

JS毫秒时间戳转时间

作者: 江河湖海琴瑟琵琶 | 来源:发表于2020-01-02 10:10 被阅读0次

目标格式'2019-12-27 17:25:08',

无参数则返回当前时间字符串
传入毫秒时间戳则输出对应时间字符串

    //毫秒级时间戳转Y-m-d H:i:s
    function timeFormat(timeStamp){
        const obj = timeStamp ? new Date(timeStamp) : new Date();
        var res = {
            y : obj.getFullYear(),
            m : obj.getMonth()+1,
            d : obj.getDate(),
            h : obj.getHours(),
            i : obj.getMinutes(),
            s : obj.getSeconds()
        };
        for (x in res){
            res[x] = (res[x] < 10) ? '0' + res[x] : res[x];
        }
        return res.y+"-"+res.m+"-"+res.d+" "+res.h+":"+res.i+":"+res.s
    }

相关文章

网友评论

      本文标题:JS毫秒时间戳转时间

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