日志本

js模拟格式化时间

2017-08-21  本文已影响1人  发光的鱼
/**
     * 扩展格式化时间函数
     * @param fmt -- 只接受字符串{yyyy-MM-dd | HH:mm:ss}
     * @returns {*}
     * @constructor
     */
    Date.prototype.format = function (fmt) {
        if (typeof fmt != 'string') {
            throw new Error('参数格式不正确');
        }
        this.o = {
            "M+": this.getMonth() + 1, //月份
            "d+": this.getDate(), //日
            "H+": this.getHours(), //小时
            "m+": this.getMinutes(), //分
            "s+": this.getSeconds() //秒
        };
        this.k = this.k || (this.k = 0);
        if (/(y+)/.test(fmt)) {
            fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
        }
        for (this.k in this.o)
            if (new RegExp("(" + this.k + ")").test(fmt)) {
                fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (this.o[this.k]) : (("00" + this.o[this.k]).substr(("" + this.o[this.k]).length)));
            }
        this.k = null;
        this.o = null;
        return fmt;
    };
上一篇 下一篇

猜你喜欢

热点阅读