JS 格式化输出时间

JavaScript 格式化输出时间

网上找的 js 格式化输出时间

/**************************************时间格式化处理************************************/
Date.prototype.toString = function (fmt) {

    var o = {
        //月份   
        "M+": this.getMonth() + 1,
        //日   
        "d+": this.getDate(),
        //小时   
        "h+": this.getHours(),
        //分   
        "m+": this.getMinutes(),
        //秒   
        "s+": this.getSeconds(),
        //季度   
        "q+": Math.floor((this.getMonth() + 3) / 3),
        //毫秒   
        "S": this.getMilliseconds()
    };

    if (/(y+)/.test(fmt)) {
        fmt = fmt
            .replace(RegExp.$1, (this.getFullYear() + "")
                .substr(4 - RegExp.$1.length));
    }

    for (var k in o)
        if (new RegExp("(" + k + ")").test(fmt)) {
            fmt = fmt
                .replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
        }

    return fmt;
}

posted on 2020-11-17 08:47  爱上键盘的蜗牛  阅读(426)  评论(0编辑  收藏  举报

导航