官网:https://blog.mn886.net/jqGrid/
lyGrid列表格式化日期
{
colkey : “time”,
name : “日期”,
isSort:true,
renderData : function(rowindex,data, rowdata, column) {
if(data == null || data ==’’){
return “无”;
}
return new Date(data).format(“yyyy-MM-dd hh:mm:ss”);
}
}
确定传过来的日期格式,format中的格式和日期通用的相同
jstl转义显示html标签
escapeXml这个属性决定是否转义。
从数据库里取出来,直接用这个标签显示就行了!