管理LTE仪表板活动类删除



我正在使用AdminLTE仪表板。在侧边栏树视图菜单中,单击菜单后删除活动类。

管理LTE

在页脚中添加此 javaScript

*这适用于管理员侧边栏菜单和侧边栏菜单树视图

/** add active class and stay opened when selected */
var url = window.location;
// for sidebar menu entirely but not cover treeview
$('ul.sidebar-menu a').filter(function() {
return this.href == url;
}).parent().siblings().removeClass('active').end().addClass('active');
// for treeview
$('ul.treeview-menu a').filter(function() {
return this.href == url;
}).parentsUntil(".sidebar-menu > .treeview-menu").siblings().removeClass('active').end().addClass('active');

最新更新