标签: jquery twitter-bootstrap-3 bootstrap-table
我正在使用bootstrap3.x。 我的表有100条记录,并且已启用分页。我在表格上应用了自定义搜索,它只是在当前页上进行搜索,而不是在表格中所有行上进行搜索。
$("#table tbody tr").filter(function(){ $(this).toggle($(this).find('td').eq(colNo).text().indexOf(value) > -1); });