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.
最後の兄弟を選択しない方法
$(this).parent().siblings();
上記のコードはすべての兄弟を選択します。しかし、私は最後の兄弟が選択されることを望んでいません。 これどうやってするの ?
これを試してみてください...
$(this).parent().siblings().not(":last-child");
jsFiddle .
試す
$(this).parent().siblings(":not(:last)");
また
$('parent childrens').not(':last')
$('parent childrens').slice(0,-1)