我已经使用了JQuery数据表,并且在大多数情况下我都使用了它。但是,我正在尝试应用一个类,但我不希望它应用于标题。我对如何省略标题感到困惑。
$('#example').dataTable({
"ajax": 'dataworks/fetchallmovements.txt',
"order": [[0, "desc"]],
columnDefs: [
{type: 'date-dd-MMM-yyyy', "targets": 0},
{className: "centre_cell", "targets": 1},
{className: "right_cell", "targets": 2},
]
});
如果有人能指出我正确的方向。
感谢。萨姆
答案 0 :(得分:0)
您可以尝试这样做:
$('#example').dataTable({
"ajax": 'dataworks/fetchallmovements.txt',
"order": [[0, "desc"]],
columnDefs: [
{type: 'date-dd-MMM-yyyy', "targets": 0},
{
"createdCell": function(cell)
{
$(cell).addClass('centre_cell');
},
"targets": 1
},
{
"createdCell": function(cell)
{
$(cell).addClass('right_cell');
},
"targets": 2
},
]
});