前言:
1、bootstrapTable 官网 http://bootstrap-table.wenzhixin.net.cn/zh-cn/ ,http://bootstrap-table.wenzhixin.net.cn/zh-cn/documentation/
需要大量其他中文翻译的可参照别人的博客翻译http://blog.csdn.net/rickiyeat/article/details/56483577
2、本篇并不是要教你怎么用bootstrap,只是作为个人在使用的过程中遇到的问题的总结
1、有多个分页的情况下。我点了别的分页,但点击搜索时分页没有跳回第一页
问题:$('#table_server').bootstrapTable('refresh'); //刷新表格,但是只是在当页刷新表格并没有跳回第一页
解决办法:$("#table_server").bootstrapTable("refreshOptions", { pageNumber: 1 }) //用这句话替代刷新语句
一、怎么加载数据
二、有选择项时的操作
三、有多个搜索关键字的搜素请求
四、除了加载表格外的数据处理
五、最后的总结
参考网址:http://blog.csdn.net/tyrant_800/article/details/50269723
https://www.cnblogs.com/flyins/p/6752248.html
https://www.cnblogs.com/wuhuacong/p/7284420.html
http://blog.csdn.net/l_chiwin/article/details/77142297