jQuery - 严格的子层次结构选择

时间:2012-11-28 13:48:43

标签: javascript jquery jquery-selectors dom-traversal

以下jQuery选择器的等价物是什么:

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

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

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


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

1 个答案:

答案 0 :(得分:3)

这是如何做到的:

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

以及:

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

但由于某些原因,此类选择器现在为deprecated