我从 json 中的数据库读取数据并将它们放入 flexigrid 表中。数据库表中的一个单元格的名称为“color”,其值为 0 或 1。
如果“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) );
}