gpt4 book ai didi

jquery dataTable 改变页面

转载 作者:太空宇宙 更新时间:2023-11-04 11:47:48 26 4
gpt4 key购买 nike

各位!我需要更改数据表中的分页。我得到这个 I got this

我需要改成那个

enter image description here

我试过这样修改css

  .dataTables_wrapper .dataTables_paginate .paginate_button.disabled{
margin-left:100px;
}

但是我失败了。你有什么想法吗?感谢您的帮助!

最佳答案

如果您有一个 pagingTypefull_numbers 的表

var table = $('#example').DataTable({
pagingType: "full_numbers"
});

你可以这样隐藏第一个和上一个按钮

$('#example').on('draw.dt', function() {
$('.paginate_button.previous,.paginate_button.first').hide();
});

它看起来像上面的图片 - 演示 -> http://jsfiddle.net/n5dyy8px/

关于jquery dataTable 改变页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30840046/

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