$('#news tr:nth-child(even)').addClass('alt');
与 $('#news').find('tr:nth-child(even)').addClass('alt'); 是一样的结果,
有时候使用.not() 方法而不是 :not 选择器来执行,因为:使用 :not()
通常会构建出一个非常复杂的选择器。所以大多数情况下,推荐使用not()方法。
JQ中类似的例子很多。比如:has 与 .has
$('#news tr:nth-child(even)').addClass('alt');
与 $('#news').find('tr:nth-child(even)').addClass('alt'); 是一样的结果,
有时候使用.not() 方法而不是 :not 选择器来执行,因为:使用 :not()
通常会构建出一个非常复杂的选择器。所以大多数情况下,推荐使用not()方法。
JQ中类似的例子很多。比如:has 与 .has