我是jquery的新手。我有一个3级菜单,我想高亮显示活动子项目菜单的父级或/和granparent。我有以下代码,但这只是突出显示当前活动的子,父或祖父母。
如何突出显示任何活动子菜单项的父或/和granparent?
这是我的jquery代码:
$(document).ready(function(){
$('.sf-menu li a').each(function(index) {
if((this.pathname.trim() == window.location.pathname))
$(this).parent().addClass("selected1");
});
});
我的css:
.PageMenu .sf-menu li.selected1 > a {
background-color: #565656;
color: #ffffff !important;
display: block;
z-index: 2000;
}
任何人都可以帮助我吗?