我從json數據庫中讀取數據,並將它們放在flexigrid表中。數據庫表中的一個單元格的名稱爲「color」,並且具有0或1.如何使用數據庫中的標誌動態更改Flexigrid行顏色?
如何在「color = 0」中更改藍色的行顏色,如果「color = 1」則更改爲紅色?
我發現flexigrid.js這個代碼,但不能使用它:
// If the content has a <BGCOLOR=nnnnnn> option, decode it.
var offs = td.innerHTML.indexOf('<BGCOLOR=');
if(offs > 0) {
$(td).css('background', text.substr(offs+7,7));
}