我想在渲染表格时向行添加一些类,示例代码:
$("#id").dataTable({
bProcessing: true,
sAjaxSource: com.mycompany.path.api.message[component],
aoColumns: [
{}, {},
{
sWidth: "37px",
fnRender: function(obj) {
return "<span>" + myData + "</span>";
}
}
]
});
在此示例中,我只能控制“td”标签,但我想根据循环中在 fnRender() 中获得的数据为“tr”标签添加一些类。我如何使用数据表来做到这一点?
谢谢,