jQuery:带有 OR 条件的选择器
我有以下代码:
$('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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试使用
not
方法排除tfoot
行:Try the
not
method to exclude thetfoot
rows:有点冗长,但会起作用。
http://api.jquery.com/multiple-selector/
A bit verbose, but will work.
http://api.jquery.com/multiple-selector/