在下面的jquery数据表中,如果我们使用createdRow
而不是rowCallback
,它将产生相同的结果。我找不到任何区别。
function createTable(abc) {
tbl=$("#tableBind").DataTable({
"data":abc,
"destroy": true,
"columns":[
{"data":null},
{"data":"email"},
{"data":"age"},
{"data":"qualification"}
],
"rowCallback":function(row,data,index){
var name=abc[index].firstname+" "+abc[index].lastname;
$('td',row).eq(0).html(name);
}
});
}