jQuery:带有 OR 条件的选择器

发布于 2024-09-28 04:04:20 字数 258 浏览 3 评论 0原文

我有以下代码:

$('table.tableElements thead|tbody tr').children().hover(function(){
    //    How can I do this ↑
});

我想捕获 thead 的所有 tr's OR tbody 但不是 <代码>tfoot。
我该怎么做?

I've got following code:

$('table.tableElements thead|tbody tr').children().hover(function(){
    //    How can I do this ↑
});

I'd like to catch all tr's of thead OR tbody but not tfoot.
How can I do this?

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

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

发布评论

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

评论(4

归途 2024-10-05 04:04:20

尝试使用 not 方法排除 tfoot 行:

$('table.tableElements tr').not('tfoot tr').children().hover(function(){
    // code....
});

Try the not method to exclude the tfoot rows:

$('table.tableElements tr').not('tfoot tr').children().hover(function(){
    // code....
});
凶凌 2024-10-05 04:04:20
$('table.tableElements thead tr, table.tableElements tbody tr ')

有点冗长,但会起作用。

http://api.jquery.com/multiple-selector/

$('table.tableElements thead tr, table.tableElements tbody tr ')

A bit verbose, but will work.

http://api.jquery.com/multiple-selector/

兰花执着 2024-10-05 04:04:20
$('table.tableElements thead tr, table.tableElements tbody tr').children().hover(function() {

});
$('table.tableElements thead tr, table.tableElements tbody tr').children().hover(function() {

});
一萌ing 2024-10-05 04:04:20
$('table.tableElements thead tr, table.tableElements tbody tr')
$('table.tableElements thead tr, table.tableElements tbody tr')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文