1. bootstrap table刷新:
$("#mytab").bootstrapTable('refresh', {
url: '${request.contextPath}/jobs'
});
2. bootstrap table 需要加载不同的数据, 使用刷新不好用, 或者设置不同的URLtable都没变化 需要在这之前加上下面这行代码
$("#mytab").bootstrapTable('destroy');
3. 未完待续。。。