js时间对象格式化 format(转载)

  1. /** 
  2.  * 时间对象的格式化 
  3.  */  
  4. Date.prototype.format = function(format){  
  5.     /* 
  6.      * format="yyyy-MM-dd hh:mm:ss"; 
  7.      */  
  8.     var o = {  
  9.         "M+": this.getMonth() + 1,  
  10.         "d+": this.getDate(),  
  11.         "h+": this.getHours(),  
  12.         "m+": this.getMinutes(),  
  13.         "s+": this.getSeconds(),  
  14.         "q+": Math.floor((this.getMonth() + 3) / 3),  
  15.         "S": this.getMilliseconds()  
  16.     }  
  17.       
  18.     if (/(y+)/.test(format)) {  
  19.         format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 -  
  20.         RegExp.$1.length));  
  21.     }  
  22.       
  23.     for (var k in o) {  
  24.         if (new RegExp("(" + k + ")").test(format)) {  
  25.             format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));  
  26.         }  
  27.     }  
  28.     return format;  
  29. }  
posted @ 2015-01-24 22:54  子慕大诗人  阅读(643)  评论(0编辑  收藏  举报