如何使用jQuery获取下一个hideclass?

时间:2015-05-16 14:29:43

标签: javascript jquery

如何使用jQuery获取e-hide类的下一个th。我想得到隐藏列的下一个:

[
   th.e-headercell.e-default.e-filterrow,
   th.e-headercell.e-default.e-hide,
   th.e-headercell.e-default,
   th.e-headercell.e-default,
   th.e-headercell.e-default,
   th.e-headercell.e-default
]

1 个答案:

答案 0 :(得分:0)

您可以使用.next()获取下一个兄弟元素。

如果您希望在课程th之后获得.e-hide

$('th.e-hide').next();

如果您希望在当前th.e-hide之后获得下一个th.e-hide

$('th.e-hide').next('th.e-hide');

如果您想获得下一个th.e-hide,只要它有.e-hide类:

$('th').next('th.e-hide');