在include.htmlfeng封装js
<!-- 表格冻结列插件 --> <div th:fragment="bootstrap-table-fixed-columns-js"> <script th:src="@{/ajax/libs/bootstrap-table/extensions/columns/bootstrap-table-fixed-columns.js?v=1.18.3}"></script> </div>
在所需要的html里引用js <th:block th:include="include :: bootstrap-table-fixed-columns-js" />
var options = { ... fixedColumns: true, fixedNumber: 3, fixedRightNumber: 1 ... }
注: fixedColumns: true表示开启表格冻结列, fixedNumber: 3表示从左侧起冻结的列数
fixedRightNumber: 1 表示从右侧起冻结的列数