我正在使用Laravel数据表(https://github.com/yajra/laravel-datatables)。 我想在处理数据表后执行我的自定义脚本。我想在渲染html dom元素之一上注册事件。我该怎么做? 我试试
$(document).ready(function(){
$('.someclass').on('change',function(){
});
});`
但它不起作用。
答案 0 :(得分:1)
https://datatables.net/reference/option/initComplete。表格已满载时显示提醒
$('#example').dataTable( {
"initComplete": function(settings, json) {
alert( 'DataTables has finished its initialisation.' );
}
} );