$("#table").bootstrapTable({...})前为何使用$("#table").bootstrapTable('destroy');

原因:在初始化table之前,要将table销毁,否则会保留上次加载的内容

$("#table").bootstrapTable('destroy'); 
$("#table").bootstrapTable({
dataType: "json",
method: 'get',
contentType: "application/x-www-form-urlencoded",
cache: false,
url:url,
queryParams: queryParams,
columns:col,
pagination:true,
sidePagination:'server',
pageNumber:1,
pageSize:10,
pageList:[10, 25, 50, 100, 'All'],
onCheck: function (row) {
var id = checkid;
//遍历所有的row 获取name
//params["ids"] .add(row.agancyid);
params["ids"] += row[""+id+""] +",";
}
})

你可能感兴趣的:(javascript)