<script>
$(document).ready(function () {
$('#example').dataTable({
serverSide: true,
ajax: {
url: 'hello/data1',
dataType: 'json',
type: 'POST',
"fnRowCallback": function (nRow, aData, iDisplayIndex, iDisplayIndexFull) {
// Bold the grade for all 'A' grade browsers
alert(1);
$('td:eq(2)').html('<b>' + aData[2] + '</b>')
}
}
});
});
</script>
即使是警报功能也无法正常工作。我错过了什么?我需要在一行中添加指向特定列的链接。我还需要为这些特定行添加类。
我应该如何处理数据表中的分页?我很困难。