Page A
Page A 1
Page A 2
Page B
Page C
我需要mMenu才能跟随当前页面,所以如果我输入Page A 2,我希望菜单自动打开该子菜单。
检查了插件,但无法抓住任何东西来实现这个目标。有什么建议吗?
答案 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
}
});