如何在多个表中搜索?我有这段代码,但这仅适用于我的一张桌子。我一共有4张桌子。
这是我在表格中搜索“某物”的代码。
$(document).ready(function() {
$('#search').keyup(function() {
searchTable($(this).val());
});
});
function searchTable(inputVal) {
var table = $('#searchTable');
table.find('tr').each(function(index, row) {
var allCells = $(row).find('td');
if(allCells.length > 0) {
var found = false;
allCells.each(function(index, td) {
var regExp = new RegExp(inputVal, 'i');
if(regExp.test($(td).text())) {
found = true;
return false;
}
});
if(found == true) $(row).show();
else $(row).hide();
}
});
}
我已经剥离了我的表格以获取代码,以便它看起来更易于管理
问题在于“search tabe”只运行表 1 而不是剩余的
表格1:
<table class="table" id="searchTable">
表 2:
<table class="table" id="searchTable">
表3:
<table class="table" id="searchTable">
表 4:
<table class="table" id="searchTable">