gpt4 book ai didi

javascript - dataTables 将 css 类分配给分页包装器

转载 作者:数据小太阳 更新时间:2023-10-29 03:49:56 25 4
gpt4 key购买 nike

我有一个包含最基本初始化代码的数据表。但是,我需要为出现在表格底部的分页分配一个自定义分页 css 类(我想分配 Twitter bootstrap 分页类)。我应该怎么做?

这是我的代码:

$(document).ready(function() {
/* Build the DataTable with third column using our custom sort functions */
$('#list_table').dataTable({"sPaginationType" : 'full_numbers', 'sPaging' : 'pagination'});

} );

最佳答案

您可以使用 drawCallback 选项:

$(document).ready(function () {
$('#myDataTable').DataTable({
...
"drawCallback": function () {
$('.dataTables_paginate > .pagination').addClass('pagination-sm');
}
});
});

关于javascript - dataTables 将 css 类分配给分页包装器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21521761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com