我有一个数据表。我想在对数据表的列进行排序时触发一个事件。这是我的代码。
var productTable = $('#example').dataTable({
"bFilter": true,
"bJQueryUI": true,
"bSort": true,
"bLengthChange": true,
"iDisplayLength": -1,
"aLengthMenu": [[-1, 25, 50, 100], ["All", 25, 50, 100]],
"sPaginationType": "full_numbers",
"bPaginate": true
});
$('#example').bind('sort', function () { /* Here I want to get the value of the sorted coumn */});
在绑定函数中,我想要排序列的名称。任何人都可以帮我找到这个吗?