简体   繁体   English

使用 DataTables 引导分页-sm

[英]Bootstrap pagination-sm with DataTables

I would like to have my Datatables pagination styled like the Bootstrap pagination.我想让我的 Datatables 分页样式类似于 Bootstrap 分页。

So, at the moment it looks like this:所以,目前它看起来像这样:

实际外观

If I add如果我添加

<script src="https://cdn.datatables.net/1.10.23/js/dataTables.bootstrap.min.js"></script>

it looks like this:它看起来像这样:

查看 dataTables.bootstrap.min.js

And I want it to look like this:我希望它看起来像这样:

想要的样子

I don't know why the additional js-file causes this distance between the buttons.我不知道为什么额外的 js 文件会导致按钮之间的距离。

I would really appreciate any help!我真的很感激任何帮助!

Can you please check the below code link?你能检查下面的代码链接吗? Hope it will work for you.希望它对你有用。 we have added jQuery , jquery.dataTable.js , and jquery.dataTables.min.css as per Data table documentation ( https://datatables.net/examples/basic_init/alt_pagination.html ). we have added jQuery , jquery.dataTable.js , and jquery.dataTables.min.css as per Data table documentation ( https://datatables.net/examples/basic_init/alt_pagination.html ).

We have applied style as per your required design and removed margin from pagination button like following.我们已根据您所需的设计应用样式,并从分页按钮中删除边距,如下所示。

.dataTables_wrapper .dataTables_paginate a.paginate_button {
  margin: 0px;
}

Please refer to this link: https://jsfiddle.net/yudizsolutions/360sefnL/2/请参考此链接: https://jsfiddle.net/yudizsolutions/360sefnL/2/

You might be forget to include the CSS library files.您可能忘记包含 CSS 库文件。 can you please check and add below CSS link into your code.您能否检查并在您的代码中添加下面的 CSS 链接。

The following CSS library files are loaded for use in this example to provide the styling of the table:加载了以下 CSS 库文件以在此示例中使用,以提供表格的样式:

https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.2/css/bootstrap.css https://cdn.datatables.net/1.10.23/css/dataTables.bootstrap4.min.css https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.2/css/bootstrap.ZC7A62 8CBA22E28EB17B5F5C6AE2A266AZ https://cdn.datatables.net/1.10.23/css/dataTables.bootstrap4.min.css

And please follow the given link and check the CSS tab information.请按照给定的链接查看 CSS 选项卡信息。

https://datatables.net/examples/styling/bootstrap4 https://datatables.net/examples/styling/bootstrap4

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM