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");
js小提琴。
尝试
$(this).parent().siblings(":not(:last)");
或者
$('parent childrens').not(':last')
$('parent childrens').slice(0,-1)