1、修改jquery.jqGrid.src.js文件的constructTr方法
1244行后修改为
if (id%2==0){
return '<tr role="row" id="' + id + '" tabindex="' + tabindex + '" class="' + classes +' datagrid-row-alt'+ '"' +
(style === '' ? '' : ' style="' + style + '"') + restAttr + '>';
} else{
return '<tr role="row" id="' + id + '" tabindex="' + tabindex + '" class="' + classes + '"' +
(style === '' ? '' : ' style="' + style + '"') + restAttr + '>';
}
ui.jqgrid.css添加样式:
tr.datagrid-row-alt {
background: #ccc;
}