当我翻过它时,我试图让li项改变背景颜色,这是我想要工作的代码;由于某种原因,它不是。
$(document).ready(function() {
$('.navbar ul li').mouseover(function() {
$(parent).animate({'backgroundColor': 'rgba(255,255,255,0.2)'}, 200);
});
});
答案 0 :(得分:2)
如果您希望为父元素设置动画,可能应该这样做:
$(this).animate({'backgroundColor': 'rgba(255,255,255,0.2)'}, 200);