$('#grid').datagrid({
columns:[[
{field:'filed1',title:'字段1',width:100,align:'center',
formatter:function(value){
if(value==0)
return '正常';
else
return '不正常';
}}
]]
});
filed1是妳要的字段名,自己改壹下。主要是formatter這個函數裏面寫的東西