1

例如,有没有更短的方法

$("td:nth-child(2),th:nth-child(2)").hide()

我试过$("td,th").hide(":nth-child(2)")了,但这不起作用。有人对此有想法吗?谢谢!

4

1 回答 1

10

利用.filter()

$("td,th").filter(":nth-child(2)").hide();

.filter(选择器)

描述:将匹配元素的集合减少为匹配选择器或通过函数测试的元素。

于 2013-09-04T14:39:36.280 回答