在此数据表example中,targets : -1
的含义是什么?
$(document).ready(function() {
var table = $('#example').DataTable( {
"ajax": "data/arrays.txt",
"columnDefs": [ {
"targets": -1,
"data": null,
"defaultContent": "<button>Click!</button>"
} ]
} );
$('#example tbody').on( 'click', 'button', function () {
var data = table.row( $(this).parents('tr') ).data();
alert( data[0] +"'s salary is: "+ data[ 5 ] );
} );
} );
答案 0 :(得分:1)
如Documentation中所述:
Targets
告诉DataTables应该应用定义(columnDefs
)的列。它可能是:
所以-1
是从右边算起的第一列。