我只是想根据一个单元格的值为DataTables
中的表的行着色。如您所见,我尝试了两种方法(.css
和.addClass
),但无济于事。 if
子句可以正常工作,但颜色不变。
function colourTable(table) {
table.rows().every(function (rowId, tableLoop, rowLoop) {
var dir = this.data()[2];
if (dir == 'B') {
$(this).css('background-color', 'red');
}
else {
$(this).addClass('redClass');
}
});
}