jquery easyUi columns日期格式化


jquery easyUi  columns日期格式化

方法一

[javascript] view plain copy print?
  1. Date.prototype.format = function (format) {  
  2.     var o = {  
  3.         "M+": this.getMonth() + 1, // 月  
  4.         "d+": this.getDate(), // 日  
  5.         "h+": this.getHours(), // 小時  
  6.         "m+": this.getMinutes(), // 分  
  7.         "s+": this.getSeconds(), // 秒  
  8.         "q+": Math.floor((this.getMonth() + 3) / 3), // 刻  
  9.         "S": this.getMilliseconds()  
  10.         // millisecond  
  11.     }  
  12.     if (/(y+)/.test(format))  
  13.         format = format.replace(RegExp.$1, (this.getFullYear() + "")  
  14.             .substr(4 - RegExp.$1.length));  
  15.     for (var k in o)  
  16.         if (new RegExp("(" + k + ")").test(format))  
  17.             format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));  
  18.     return format;  
  19. };  

[javascript] view plain copy print?
  1. //格式化日期方法  
  2. function formatDate(value) {  
  3.     if (value == null || value == '') {  
  4.         return '';  
  5.     }  
  6.     var dt;  
  7.     if (value instanceof Date) {  
  8.         dt = value;  
  9.     } else {  
  10.         dt = new Date(value);  
  11.     }  
  12.   
  13.     return dt.format("yyyy-MM-dd"); //擴展的Date的format方法(上述插件實現)  
  14. };  

引用
[javascript] view plain copy print?
  1. {field:"putAway",title:"上架時間",width:200,formatter:formatDate},  

方法二

[javascript] view plain copy print?
  1. {field:'time',title:'時間',    
  2.                      formatter:function(value,row,index){    
  3.                          var unixTimestamp = new Date(value);    
  4.                          return unixTimestamp.toLocaleString();    
  5.                          }    
  6.                     },   


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM