为Javascript的Date类型增加原型方法,以便日期格式化;
01 | Date.prototype.format = function(format){ |
03 | "M+" : this.getMonth()+1, //month |
04 | "d+" : this.getDate(), //day |
05 | "h+" : this.getHours(), //hour |
06 | "m+" : this.getMinutes(), //minute |
07 | "s+" : this.getSeconds(), //second |
08 | "q+" : Math.floor((this.getMonth()+3)/3), //quarter |
09 | "S" : this.getMilliseconds() //millisecond |
12 | if(/(y+)/.test(format)) { |
13 | format = format.replace(RegExp.$1, (this.getFullYear()+"").substr(4 - RegExp.$1.length)); |
17 | if(new RegExp("("+ k +")").test(format)) { |
18 | format = format.replace(RegExp.$1, RegExp.$1.length==1 ? o[k] : ("00"+ o[k]).substr((""+ o[k]).length)); |
开始调用:
1 | alert(new Date().Format("yyyy年MM月dd日")); |
2 | alert(new Date().Format("MM/dd/yyyy")); |
3 | alert(new Date().Format("yyyyMMdd")); |
4 | alert(new Date().Format("yyyy-MM-dd hh:mm:ss")); |