0

我需要获取可能具有 styleA 或 styleB 的兄弟行数。这就是我所拥有的,我只得到 0,即使应该返回一个数字......

$row.siblings('tr').find('.styleA, .styleB').length;
4

3 回答 3

1

您可以获取具有 $row 父级上下文的元素。

$('.styleA,.styleB', $row.parent()).length
于 2013-06-24T14:27:59.747 回答
0

试试这个 -

$row.siblings('tr').filter('.styleA, .styleB').length;
于 2013-06-24T14:26:16.960 回答
0

试试这个(据我所知)

$row.siblings('tr.styleA,tr.styleB').length;
于 2013-06-24T14:26:58.570 回答