码迷,mamicode.com
首页 > Web开发 > 详细

jquery easyUi columns日期格式化

时间:2017-04-18 18:17:48      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:art   插件   too   for   mat   function   toc   instance   title   

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.                     },   

jquery easyUi columns日期格式化

标签:art   插件   too   for   mat   function   toc   instance   title   

原文地址:http://www.cnblogs.com/qq3111901846/p/6728620.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!