gpt4 book ai didi

javascript - JQuery 搜索栏隐藏表格行

转载 作者:行者123 更新时间:2023-11-27 23:58:57 25 4
gpt4 key购买 nike

希望有人能够帮助我解决这个问题。我有一个动态创建的充满信息的表,我尝试使用 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 行为不正确?

最佳答案

无需重新发明轮子。试试这个:

JQuery 快速搜索:http://deuxhuithuit.github.io/quicksearch/r/examples/

你的 JS 代码不会超过:

$('#id_search').quicksearch('table#table_example tbody tr');

参见运行示例:http://jsfiddle.net/ddan/tqhxqwrh/1

关于javascript - JQuery 搜索栏隐藏表格行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32000609/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com