如何获取表的所有 tr 元素并使用 jquery 过滤它们?
我试图获取表中的所有表行,然后根据它们是否有一个名为“hideGroup”的类来过滤它们。到目前为止,这是我的代码,但它只是不断输出数字。获取表中的所有表行然后检查它们是否有一个名为“hideGroup”的组的正确方法是什么?
var newRows = $("#search-results-table").find("tr");
var filteredRows = newRows.filter(function(n) {
if (n.className != "hideGroup")
return n;
});
I'm trying to grab all table rows in a table then filter them out by if they have a class on them titled "hideGroup." This is my code so far but it just keeps outputting numbers. What would be the proper way to grab all the table rows in a table and then check to see if they have a group called "hideGroup?"
var newRows = $("#search-results-table").find("tr");
var filteredRows = newRows.filter(function(n) {
if (n.className != "hideGroup")
return n;
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
你的问题不太清楚。
如果您想选择不具有该类的所有行,请使用
:not()
如果您只想过滤具有该类的行,请使用:
Your question is not that clear.
Use
:not()
if you like to select all rows that do not have the classIf you like to only filter the ones with that class use:
$('#search-results-table tr.hideGroup')
将返回完整的集合。编辑:
如果您确实想要没有类
hideGroup
的行,尽管明确表示检查它们是否有一个名为“hideGroup?”的组?
,这是执行此操作的选择器:$('#search-results-table tr').not('.hideGroup')
$('#search-results-table tr.hideGroup')
would return the full set.Edit:
If it's true that you want rows without the class
hideGroup
, despite explicitly sayingcheck to see if they have a group called "hideGroup?"
, here's the selector to do that:$('#search-results-table tr').not('.hideGroup')
要返回具有“hideGroup”类的所有表行的集合,请使用:
要过滤不具有“hideGroup”类的类,请使用:
To return a collection all of the table rows with "hideGroup" class use:
to filter the classes that do not have the "hideGroup" class use:
这将返回所有没有 hideGroup 类的表行
That will return all table rows that do not have the hideGroup class
它返回数字的原因是因为
n
是索引(数字),而不是元素。因此,n.className
将始终为未定义
,这将使该函数内的逻辑始终返回n
。您想要使用的是使用
或选择结果
The reason it's returning numbers is because
n
is an index (number), not an element. son.className
will always beundefined
which will make your logic inside that function always returnn
.What you want to use is either select the results by using
or
当使用
jQuery.filter()
函数时,第一个参数是索引,而不是元素。您可以通过使用this
来解决此问题:但是,请查看其他一些答案。他们提供了一个更短的解决方案。
When using a function with
jQuery.filter()
, the first parameter is the index, not the element. You can fix this by usingthis
instead:However, take a look at some of the other answers. They provide a much shorter solution.