我有这个html:
<table id="assign-table" class="table table-striped table-bordered display" cellspacing="0" width="100%">
<thead>
<tr>
<th>id</th>
<th>username</th>
<th>checkbox</th>
</tr>
</thead>
</table>
这是我的datable js:
var table= $('#assign-table').DataTable({
dom: 'frtip',
iDisplayLength: 5,
columnDefs: [
{
targets: 2,
width: '50px',
data: null,
defaultContent: '<input type="checkbox" />'
},
{
className: 'control',
orderable: false,
targets: 0
}
],
order: [1, 'asc']
});
我需要获取可数据化的数据。
var data = table.data();
但是我只获取两个第一列数据。 我也如何获取columnDefs数据?我需要找出是否已选中每一行的输入复选框。