Jquery在悬停和活动时添加类

时间:2015-09-12 23:39:06

标签: jquery

使用此代码,我的导航项目会短暂点击(默认颜色)一小段时间。

我想在悬停时和li.active

时添加特定颜色

有什么建议吗?谢谢你们!



jQuery('.custom-nav-ul a').each(function () {
                if (jQuery(this).attr('href') === "/landbrug/") {
                    jQuery(this).addClass('landbrug');
                    if ($(this).parent().hasClass('active')) {
                        $(this).parent().addClass('landbrug-active');
                    }
                    
                }




1 个答案:

答案 0 :(得分:0)

真。使用CSS会更好。     .custom-nav-ul a:hover {// landbrug style content}     .custom-nav-ul a.active {// landbrug-active style content}