我的博客
欢迎来到我的博客
bunny.icu

js为Date增加format函数

js为Date增加format函数
//author: meizz
Date.prototype.format = function (fmt="yyyy-MM-dd hh:mm:ss") {
    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;
}

然后可以使用下面的方式对Date格式化输出:

new Date().format("yyyy-MM-dd hh:mm:ss")

版权声明


本作品系原创, 转载须遵循 CC BY-NC-ND 4.0 许可协议
本文标题:js为Date增加format函数
本文链接:https://www.bunny.icu/archives/1137

推荐文章

发表评论

textsms
account_circle
email

bunny.icu

js为Date增加format函数
为Date增加format函数
扫描二维码继续阅读
2020-03-30