时间戳转换

    function getMyDate(str) {

        var oDate = new Date(str),

            oYear = oDate.getFullYear(),

            oMonth = oDate.getMonth() + 1,

            oDay = oDate.getDate(),

            oHour = oDate.getHours(),

            oMin = oDate.getMinutes(),

            oSen = oDate.getSeconds(),

            oTime = oYear + "-" + getzf(oMonth) + "-" + getzf(oDay); //最后拼接时间 年-月-日

        // oTime = oYear

+ '-' + getzf(oMonth) + '-' + getzf(oDay) + ' ' + getzf(oHour) + ':' +

getzf(oMin) + ':' + getzf(oSen);//最后拼接时间 年-月-日 时:分:秒

        return oTime;

        //补0操作

        function getzf(num) {

            if (parseInt(num) < 10) {

                num = "0" + num;

            }

            return num;

        }

}

getMyDate(“151515134024”);

你可能感兴趣的:(时间戳转换)