当我搜索年龄将隐藏的名称时,我在实时搜索中遇到问题。我想要的是只有名字可以搜索它。然后年龄没有出现。
请检查我的代码。
这是我的html
<table class="AvailableGroupLab availGrpLabs avalLabs">
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td><span>wewe</span></td>
<td>16</td>
</tr>
<tr>
<td><span>Melvin</span></td>
<td>18</td>
</tr>
<tr>
<td><span>Marvin</span></td>
<td>20</td>
</tr>
</table>
这是我的jQuery
<script type="text/javascript">
var span = $(".AvailableGroupLab").clone().html();
function filter(element) {
$('.AvailableGroupLab').html(span);
var value = $(element).val().toLowerCase();
$(".AvailableGroupLab span").each(function () {
if ($(this).text().toLowerCase().search(value) == -1) {
$(this).remove();
}
});
}
</script>