我正在尝试在JQUERY Datatable中进行分页时调用函数。我将以下代码放在文档准备好的
中var table = $('#example').DataTable();
$('#example').on( 'page.dt', function () {
alert('Paging Clicked');
} );
但不知怎的,它不起作用。此外,我没有收到任何脚本错误。
答案 0 :(得分:0)
最初我将文件直接放入文件中。在那之后我尝试了这样,并且工作正常。
function JQueryChildDatatable() {
var dtChildTable = $('#dtChild').dataTable({
"bAutoWidth": false,
"bPaginate": true,
"bSort": true,
"bFilter": true,
"bInfo": true,
"paging": true,
"iDisplayLength": 10,
});
$('#dtChild').on( 'page.dt', function () {
alert('Page Clicked');
});
}