码迷,mamicode.com
首页 > Web开发 > 详细

JS日期格式化

时间:2017-11-03 00:12:27      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:div   代码   日期   http   regex   code   images   sub   var   

 代码如下:

Date.prototype.format = function (format) {
    var args = {
        "M+": this.getMonth() + 1,
        "d+": this.getDate(),
        "h+": this.getHours(),
        "m+": this.getMinutes(),
        "s+": this.getSeconds(),
        "q+": Math.floor((this.getMonth() + 3) / 3),  //quarter
        "S": this.getMilliseconds()
    };
    if (/(y+)/.test(format))
        format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
    for (var i in args) {
        var n = args[i];
        if (new RegExp("(" + i + ")").test(format))
            format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? n : ("00" + n).substr(("" + n).length));
    }
    return format;
};

 调用如下:

技术分享

 

JS日期格式化

标签:div   代码   日期   http   regex   code   images   sub   var   

原文地址:http://www.cnblogs.com/ZQWelcomeIndex/p/7775160.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!