首页 > 解决方案 > Bootstrap-Table 1.15.4 分页每页行数下拉菜单不起作用

问题描述

引导表 bootstrap-table.min.js 1.15.4 引导引导 bootstrap.min.js 4.3.1 Jquery jquery-min.js 3.4.1

页面加载得很好。但是,选择每页行数的下拉列表不起作用。表代码在 bootstrap-table 的在线编辑器上运行良好。我已经尝试过使用不同的表,但它不起作用。

https://jsfiddle.net/ashishvermapu/f54jweyc/1/

<table class="table table-striped" data-pagination="true" data-toggle="table" data-search="true">
<script src="webjars/jquery/3.4.1/jquery.min.js"></script>
<script src="webjars/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="webjars/bootstrap-table/1.15.4/dist/bootstrap-table.min.js"></script>

标签: jqueryhtmlpaginationbootstrap-table

解决方案


Bootstrap 4 依赖于 popper.js。我导入了以下 js 来解决问题。

<script src="webjars/popper.js/1.14.7/umd/popper.min.js"></script>

推荐阅读