美文网首页日志本
js模拟格式化时间

js模拟格式化时间

作者: 发光的鱼 | 来源:发表于2017-08-21 11:28 被阅读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;
    };

相关文章

网友评论

    本文标题:js模拟格式化时间

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