Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要获取可能具有 styleA 或 styleB 的兄弟行数。这就是我所拥有的,我只得到 0,即使应该返回一个数字......
$row.siblings('tr').find('.styleA, .styleB').length;
您可以获取具有 $row 父级上下文的元素。
$('.styleA,.styleB', $row.parent()).length
试试这个 -
$row.siblings('tr').filter('.styleA, .styleB').length;
试试这个(据我所知)
$row.siblings('tr.styleA,tr.styleB').length;