仅当第一行多于 1 列时才需要 JQuery 选择表

发布于 2024-07-19 07:13:55 字数 465 浏览 5 评论 0原文

我需要使用 JQuery 选择表元素并对其进行操作,但前提是它至少包含一行且多于一列。 以下选择器可以工作,但只能部分完成:

$('#my_table_is:has(tbody tr)').doSomething();

我尝试过但没有成功的变体是:

$('#my_table_id:has(tbody > tr > td:eq(1))').doSomething();
$('#my_table_id:has(tbody tr:nth-child(1))').doSomething();
$('#my_table_id:has(td:eq(1))').doSomething();    

选择器和过滤器的哪种组合将使这项工作有效?

顺便说一句,我需要这个的原因是,当表输出中只有 1 列时,具有多列 sortList 的表排序器显然会崩溃。

I need to select and act on a table element with JQuery, but only when it contains at least one row with more than one column. The following selector works, but only gets me part way:

$('#my_table_is:has(tbody tr)').doSomething();

Variations I have tried with no success are:

$('#my_table_id:has(tbody > tr > td:eq(1))').doSomething();
$('#my_table_id:has(tbody tr:nth-child(1))').doSomething();
$('#my_table_id:has(td:eq(1))').doSomething();    

What combination of selector and filter will make this work?

BTW, the reason I need this is that tablesorter with a multi-column sortList, will apparently blow up when there is only 1 column in the table output.

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

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

发布评论

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

评论(3

最冷一天 2024-07-26 07:13:55

只进行一次良好的 ole 检查怎么样?

if (1 < $('#tbl thead th').size()) ...

how about just a good ole check?

if (1 < $('#tbl thead th').size()) ...
谜泪 2024-07-26 07:13:55

实际修复表排序器而不是乱搞不是更容易吗? (我假设您的意思是 http://tablesorter.com/)。

Would it not be easier to actually fix the tablesorter instead of hacking around? (I assume you mean http://tablesorter.com/).

这样的小城市 2024-07-26 07:13:55

我设法使用以下选择器(也适用于旧版本的 TableSorter)来完成此操作:

#tableID:has( tbody > tr > td + td )

这个想法是它将找到表仅当它的 tbodytr 中至少有两个同级 td 时。

I managed to do this with the following selector (also for an old version of TableSorter):

#tableID:has( tbody > tr > td + td )

The idea is that it will find the table only if it has a tbody with a tr that has at least two sibling td in it.

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