Bootstrap-table表格插件的使用方法
前言 上次写了一个 可拖动列表的插件 ,但除了这个特点没什么优点了,接下写的是我们常用的Bootstrap-table表格插件 正文 官网: https://bootstrap-table.com/ 有两个翻译API的网址: https://blog.csdn.net/S_clifftop/article/details/77937356?locationNum=3&fps=1 https://blog.csdn.net/mrczr/article/details/64441265 在使用时需要引入如下几个文件: bootstrap.min.css bootstrap-table.css jquery.js bootstrap.js bootstrap-table.js bootstrap-table-zh-CN.js(中文插件) 客户端分页例如下: // 首先销毁表格 $('#fwfx_tb').bootstrapTable('destroy' ); // 初始化表格,动态从服务器加载数据 $('#fwfx_tb' ).bootstrapTable({ pagination: true , // 启动分页 striped: true , // 设置为 true 会有隔行变色效果 cache: false , // 是否使用缓存,默认为true,所以一般情况下需要设置一下这个属性(