使菜单跟随当前页面

时间:2015-10-12 09:44:16

标签: mmenu

Page A
  Page A 1
  Page A 2
Page B
Page C

我需要mMenu才能跟随当前页面,所以如果我输入Page A 2,我希望菜单自动打开该子菜单。

检查了插件,但无法抓住任何东西来实现这个目标。有什么建议吗?

1 个答案:

答案 0 :(得分:0)

这似乎是在Mmenu中找到此配置设置的常见问题,但以下是将Mmenu初始化为默认为当前页面的方式:使用selected中的classNames配置设置。

$("#menu").mmenu({
    //Options        
    "offCanvas": {
        "zposition": "front" //Just an example option
    }
}, {
    //Configuration
    classNames: {
        selected: "current-page" //Change this class to match the default li you want
    }
});