什么相当于以下 jQuery 选择器:
$('table.special > thead > tr')
如果我在函数中$('table.special')
作为$table
参数开始?
(某种形式$table.(...)
,但等同于第一个提到的选择器)
注意:$table.filter('thead > tr')
这不是我想要的,因为它还选择thead
嵌套表的元素,并且$table.filter('> thead > tr')
不起作用,也不$table.children('thead > tr')
...