如果返回的时间格式是一长串数字,需要转换成日期时间格式,可使用以下方法:
{
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
}
原文地址:http://blog.51cto.com/1197822/2156831
时间: 2024-11-02 09:24:27