使用此代码,我的导航项目会短暂点击(默认颜色)一小段时间。
我想在悬停时和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');
}
}

答案 0 :(得分:0)
真。使用CSS会更好。 .custom-nav-ul a:hover {// landbrug style content} .custom-nav-ul a.active {// landbrug-active style content}