单击页面上的链接是否可以扩展到特定的子菜单项?
答案 0 :(得分:0)
在Core Data
第983行,我改变了:
mmenu.js
也许不完全是你想要的。这将设置菜单的根元素。
答案 1 :(得分:0)
将类添加到要默认的链接的li
,然后使用classNames
和selected
对象配置设置初始化mmenu:
$("#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
}
});