gpt4 book ai didi

jquery - 悬停状态很古怪

转载 作者:行者123 更新时间:2023-11-28 18:44:18 24 4
gpt4 key购买 nike

我一直在研究一个下拉菜单,父项和子项都有不同的颜色,当处于悬停状态时颜色会发生变化:

http://jsfiddle.net/cELJ6/1/

不过我对此有个小怪癖。

Home 链接没有悬停,ProductsSection2 也没有悬停。

问题是:

1) 当我将鼠标悬停在 Product 上时,链接的颜色需要为白色。 (BG 颜色很好,工作正常)

2) 当我将鼠标悬停在子元素上时,例如 Product1Products 链接颜色需要为白色

ProductsSection2 之间徘徊似乎很古怪。颜色有时是白色,有时是灰色 (#777)

有解决办法吗?

谢谢

最佳答案

$('ul > li.leaf').each(function(){
$(this).mouseenter(function(e){
$(this).find('a').css('color','white');
});
$(this).mouseleave(function(e){
$(this).find('a').css('color','#777777');
});

});

$('.expanded > ul.leaf').each(function(){
$(this).mouseenter(function(e){
$(this).find('a').css('color','white');
});
$(this).mouseleave(function(e){
$(this).find('a').css('color','#777777');
});

});

关于jquery - 悬停状态很古怪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10812255/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com