JS Date 时间格式化

        Date2Str(x, y) {
            var z = { M: x.getMonth() + 1, d: x.getDate(), h: x.getHours(), m: x.getMinutes(), s: x.getSeconds() };
            y = y.replace(/(M+|d+|h+|m+|s+)/g, function (v) { return ((v.length > 1 ? "0" : "") + eval('z.' + v.slice(-1))).slice(-2) });
            return y.replace(/(y+)/g, function (v) { return x.getFullYear().toString().slice(-v.length) });
        },

Date2Str(new Date(), "yyyy MM dd hh:mm:ss")
Date2Str(new Date(), "yyyy-MM-dd hh:mm:ss")

posted @ 2018-08-14 16:44  LaLaLa_heng  阅读(128)  评论(0编辑  收藏  举报