我正在为我的桌子使用表格过滤器。根据您按下的按钮,表格会重新加载新结果。
我尝试做的是在重新加载后将过滤器放在桌面上。
这是表格过滤器JS:
$(document).ready(function () {
(function ($) {
$('#filter').keyup(function () {
var rex = new RegExp($(this).val(), 'i');
$('.searchable tr').hide();
$('.searchable tr').filter(function () {
return rex.test($(this).text());
}).show();
})
}(jQuery));
});`
表格过滤HTML:
<div class="input-group"><span class="input-group-addon">Filter</span>
<input id="filter" type="text" class="form-control" placeholder="Filter by map or player...">
</div>
因此,每次按下一个按钮,都会重新加载一个包含表格的php include的div。
我猜猜在按下每个按钮后会有一些方法来应用这个过滤器,我不知道怎么回事。