以下jQuery选择器的等价物是什么:
$('table.special > thead > tr')
如果我在函数中$('table.special')
作为$table
参数开始?
(某种形式为$table.(...)
,但相当于第一个提到的选择器)
注意:$table.filter('thead > tr')
不我想要的是什么,因为它还会选择嵌套表的thead
元素,$table.filter('> thead > tr')
不起作用,$table.children('thead > tr')
......
答案 0 :(得分:3)
这是如何做到的:
$table.children("thead").children("tr");
以及:
$table.find("> thead > tr");
// or
$("> thead > tr", $table);
但由于某些原因,此类选择器现在为deprecated。