Superfish垂直菜单与活动页面

时间:2017-07-27 19:56:36

标签: javascript jquery superfish

我整合超级鱼作为垂直菜单。我希望当前页面突出显示,并通过javascript扩展它的子菜单。这看起来像我正在寻找的功能http://jsfiddle.net/Zx2EU/3/,但我试图通过javascript附加活动/当前状态,检查页面URL与href。我发现了这段代码,但无法正确实现:

var path = window.location.pathname.split('/');
path = path[path.length-1];
if (path !== undefined) {
  $("ul.sf-menu")
    .find("a[href$='" + path + "']") // gets all links that match the href
    .parents('li')  // gets all list items that are ancestors of the     link
    .children('a')  // walks down one level from all selected li's
    .addClass('current');
}

我开始使用jsfiddle,但我无法访问https,因此我无法链接外部js和css:https://jsfiddle.net/7w27a5cc/

在这种情况下,我使用第二个子菜单中的navbar_3.html链接进行测试无效。

非常感谢 -

0 个答案:

没有答案