0

我正在使用 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)
    }
);
});
4

1 回答 1

0

我决定只制作一个 js 脚本页面,其中包含每个表的所有不同代码并保存。

于 2012-04-19T09:33:29.217 回答