我有一个表格和一个选择框,如下所示:
<select id="filter" name="filter" class="form-control">
<option value="all">All</option>
<option value="1">inactive</option>
</select>
<table id="tables">
<tr>
<th>status<th>
</tr>
<tr>
<!-- some data -->
</tr>
</table>
jquery的
$(document).on('change', '#filter', function () {
if($(this).val() == 'all') $('tbody > tr', '#tables').show();
else {
$('tbody > tr.status-' + $(this).val(), '#tables').show();
$('tbody > tr:not(.status-' + $(this).val()+')', '#tables').hide()
}
});
所以这个表是使用数据表分页的,当我过滤它们时它只适用于那个页面,但不适用于其他页面 我如何解决这个问题,以适用于该表中的所有页面