JS毫秒时间戳转时间

2020-01-02  本文已影响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
    }
上一篇 下一篇

猜你喜欢

热点阅读