3

什么相当于以下 jQuery 选择器:

$('table.special > thead > tr')

如果我在函数中$('table.special')作为$table参数开始?

(某种形式$table.(...),但等同于第一个提到的选择器)


注意$table.filter('thead > tr')不是我想要的,因为它还选择thead嵌套表的元素,并且$table.filter('> thead > tr')不起作用,也不$table.children('thead > tr')...

4

1 回答 1

3

这是可以做到的:

$table.children("thead").children("tr");

也:

$table.find("> thead > tr");
// or
$("> thead > tr", $table);

但由于某些原因,这种类型的选择器现在已被弃用

于 2012-11-28T13:49:41.760 回答