jQuery Datatables, How to get all selected checkboxes from EVERY page
问题 I'm trying to get all selected checkboxes via jQuery DataTables . Basically my code does as it should, but I'm only getting the checked boxes of the current DataTables page, I want to get the Data from every page. I am using this piece of code: var data = new Object(); $.each($('#addUsersToAboTable :checkbox:checked'),function(a,b){ data[a] = $(this).val(); }); Here is an example, the result is displayed in the console. $(document).ready(function(){ $('#addUsersToAboTable').DataTable(); $('