Date.prototype.format = function(format){
var o = {
"M+" : this.getMonth()+1, //month
"d+" : this.getDate(), //day
"h+" : this.getHours(), //hour
"m+" : this.getMinutes(), //minute
"s+" : this.getSeconds(), //second
"q+" : Math.floor((this.getMonth()+3)/3), //quarter
"S" : this.getMilliseconds() //millisecond
};
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;
};
//how to use
//var now = new Date();
//var nowStr = now.format("yyyy-MM-dd hh:mm:ss");
相关文章
- 09-02javascript Date format(js日期格式化)
- 09-02javascript Date format(js日期格式化) 转载
- 09-02coding++ :javascript Date format (js日期格式化)
- 09-02javascript Date format(js日期格式化) (转)
- 09-02实现Date函数属性中的format方法
- 09-02JavaScript里的Date 对象属性及对象方法--实现简单的日历
- 09-02javascript 追加date format属性。
- 09-02[转]javascript Date format(js日期格式化)
- 09-02javascript Date format(js日期格式化)
- 09-02when is backend date format set in Javascript DateFormat