js 日期格式化函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 日期格式化函数相关的知识,希望对你有一定的参考价值。

直接上代码:

// 日期格式化函数
// yyyy/MM/dd hh:mm:ss SSS ⇒ "2017/05/16 09:24:20 850"
//"yyyy/M/d h:m:s SSS"⇒ "2017/5/16 9:24:35 723"
Date.prototype.format2 = function(format) {
    var map = {
        ‘M+‘: this.getMonth() + 1,
        ‘d+‘: this.getDate(),
        ‘h+‘: this.getHours(),
        ‘m+‘: this.getMinutes(),
        ‘s+‘: this.getSeconds()
    }
    if (/(y+)/i.test(format)) {
        format = format.replace(RegExp.$1, (this.getFullYear() + ‘‘).substr( - RegExp.$1.length));
    }
    for (var k in map) {
        if (new RegExp(‘(‘ + k + ‘)‘).test(format)) {
            var strValue = map[k] + ‘‘;
            var len = RegExp.$1.length < strValue.length ? strValue.length: RegExp.$1.length;
            if (strValue.length == 1) {
                strValue = ‘0‘ + strValue;
            }
            format = format.replace(RegExp.$1, strValue.substr( - len));
        }
    }
    if (/(S+)/.test(format)) {
        format = format.replace(RegExp.$1, (this.getMilliseconds() + ‘‘).substr(0, RegExp.$1.length));
    }
    return format;
}

 

以上是关于js 日期格式化函数的主要内容,如果未能解决你的问题,请参考以下文章

js中怎么把日期转换成数字?

如何从我的 DatePicker 片段中传输格式化的日期字符串?

js的日期格式化函数是什么!!!

JS最简便日期格式化YYYYMMDD的方法

JS的数据类型判断函数数组对象结构处理日期转换函数,浏览器类型判断函数合集

用js实现日期时间格式化?