快速搜索栏 重置方法
在对应的JS文件中添加代码
// 加在此行下
Table.api.bindevent(table);
$("#toolbar").click(function(){
table1.bootstrapTable("resetSearch","");
});
普通搜索栏 重置方法
在对应的JS文件中添加代码
$(".form-commonsearch [type=reset]").trigger("click");
// 加在此行下
Table.api.bindevent(table);
$("#toolbar").click(function(){
table1.bootstrapTable("resetSearch","");
});
$(".form-commonsearch [type=reset]").trigger("click");
info 还没有任何评论,你来说两句呐!