码迷,mamicode.com
首页 > 其他好文 > 详细

easyUi的dataGrid格式化日期时间

时间:2018-08-09 17:26:32      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:需要   val   func   reg   使用   cal   function   tag   new   

如果返回的时间格式是一长串数字,需要转换成日期时间格式,可使用以下方法:

{
     title: ‘发起时间‘,
     field: ‘time‘,
     formatter : function(value, row, index) {
                    var date = new Date(value.time); 
                    var dateTime = date.toLocaleString(); 
                    dateTime = dateTime.replace(new RegExp("/", ‘g‘),"-");
                    return ‘<span title="‘+dateTime+‘">‘+dateTime+‘</span>‘;
    },
     width: 200
}

easyUi的dataGrid格式化日期时间

标签:需要   val   func   reg   使用   cal   function   tag   new   

原文地址:http://blog.51cto.com/1197822/2156831

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