希望有人能够帮助我。我有一个动态创建的表充满信息,我试图使用JQuery只显示匹配搜索栏中输入的行。匹配是每行中的第一个td。我不知道为什么这不起作用。
JQuery的
var $foo = $('#table-name tr input[name="someValue"]');
$('#search').keyup(function() {
var bar = $.trim($(this).val()).toLowerCase();
$foo.parent().parent().show().filter(function() {
var thud = $(this).val().toLowerCase();
return !~thud.indexOf(bar);
}).hide();
当在搜索栏中输入任何字符时,所有行都会消失,无论是否有任何匹配。该表的结构如下:
表格
<table id="table-name">
<thead>
<tr>
<th>0</th>
<th>1</th>
</tr>
</thead>
<c:forEach>
<form:form id = “{id}”>
<tr id="${id2}">
<td><input type="text" class= “someClass" name= “someValue"> </input></td>
<td><select class="someClass" name="otherValue"> </select> </td>
</tr>
</form:form>
</c:forEach>
</table>
为什么我的JQuery行为不正确?
答案 0 :(得分:1)
无需重新发明轮子。试试这个:
JQuery Quicksearch:http://deuxhuithuit.github.io/quicksearch/r/examples/
您的JS代码不会超过:
$('#id_search').quicksearch('table#table_example tbody tr');