CSS / JQuery - 过滤表行并反转选择

发布于 2024-09-18 09:38:57 字数 442 浏览 1 评论 0原文

我有一个包含多行的表,然后我想突出显示包含值 x 的行,然后反转选择。

到目前为止,我能够选择包含过滤器值的行,但反转它会给我带来问题。

首先,我选择与我的搜索值匹配的行并添加类名:

var rows = $("#table tbody tr td:nth-child(1):contains('" + searchValue + "')");
$(rows).parent().addClass('filtered');

然后我尝试添加一个没有“过滤”类名的类名,这是我无法正确执行的行

$('#table tbody tr:not(.filtered)').addClass('hidden');   

:隐藏类最终出现在所有行上。
有人有什么想法吗?

谢谢,
马丁

I have a table with a number of rows, I then want to highlight the rows that contain value x and then invert the selection.

So far I am able to select the rows that contains the filter value but inverting it is giving me problems.

First I am selecting the rows that match my search value and add a class name:

var rows = $("#table tbody tr td:nth-child(1):contains('" + searchValue + "')");
$(rows).parent().addClass('filtered');

Then I am trying to add a class name that doesn't have the 'filtered' class name, this is the line that I just cant get right:

$('#table tbody tr:not(.filtered)').addClass('hidden');   

The class hidden ends up on all rows.
Anyone got any ideas?

Thanks,
Martin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼波传意 2024-09-25 09:38:57

我尝试过: http://jsfiddle.net/eYRWj/ 但没有。它按预期工作。

尝试 console.log(rows) (安装了 firebug 并启用了控制台),看看它们是否真的被标记为 .filtered,即搜索是否成功。

I tried it: http://jsfiddle.net/eYRWj/ it doesn't. It works as expected.

Try console.log(rows) (with firebug installed and its console enabled), to see if they are really marked as .filtered, i.e. if the search succeeded.

陌路终见情 2024-09-25 09:38:57

尝试使用双引号,如下所示:
$('#table tbody tr:not(".filtered")').addClass('hidden');

try with double quotes like this:
$('#table tbody tr:not(".filtered")').addClass('hidden');

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文