/**
* 扩展格式化时间函数
* @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;
};
网友评论