$(‘#tt‘).datagrid({
rowStyler:function(index,row){
if (row.listprice>50){
return ‘background-color:pink;color:blue;font-weight:bold;‘;
}
}
});
原文:https://www.cnblogs.com/ukzq/p/12105328.html