在工作中,获得日期及显示日期这一块也是项目中用得比较多的,如何多样化定制你想要的日期格式呢?
/** * 返回指定format的string * format eg:'yyyy-MM-dd hh:mm:ss' **/
Date.prototype.format = function(format) {
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(format)) {
format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
}
for (var k in o) {
if (new RegExp("(" + k + ")").test(format)) {
format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));
}
}
return format;
}
使用如: new Date().format('yyyy-MM-dd'); // '2016-12-28'
浙公网安备 33010602011771号