我有以下标记,并且正在做一些 jQuery 鼠标悬停,并将设置背景颜色。如果类是 .list_spacer,我还想设置相邻类的背景颜色
我目前有:
<div class='lists_items'>
<div class='list_item'>info here</div>
<div class='list_spacer'></div>
<div class='list_item'>info here</div>
<div class='list_spacer'></div>
<div class='list_item'>info here</div>
<div class='list_spacer'></div>
<div class='list_item'>info here</div>
</div>
$('.list_item').on('mouseover',function(){
$(this).css('background-color','yellow'); // <- yeah, the simplest possible scenario
});
并且我认为必须有某种方法可以访问相邻的 div 并仅设置某个类但不知道如何设置。关于如何做到这一点的任何想法?我只想选择是否立即在之前或之后并且具有 list_spacer 类
提前谢谢