我正在使用 datatables 表插件,并且在我的站点中全局使用它,以便我可以让所有表使用相同的设置。我想要做的是将它设置到遇到具有特定 id 的 th 之一的位置,然后它会取消排序并调整列的大小,但不确定如果td 有一定的id。
$(window).load(function(){
var oTable = $('.dataTable').dataTable({
} );
$('.selectall').toggle(
function() {
$(this).closest('.table').find('.messages').prop('checked', true);
$(this).prop('checked', true)
},
function() {
$(this).closest('.table').find('.messages').prop('checked', false);
$(this).prop('checked', false)
}
);
});