| <script> | |
| //左侧菜单的选中状态 | |
| $(".nav-fif-level li").each(function () { | |
| var url = window.location.href; | |
| var thisUrl = $(this).children("a").attr("href"); | |
| if (url.indexOf(thisUrl) > -1 && thisUrl) { | |
| $(this).children("div").css("display", "block"); | |
| $(this).parent("ul").parent("li").addClass("active"); | |
| if ($(this).attr("data-level") == "3") { | |
| $(this).parent("ul").parent("li").parent("ul").parent("li").addClass("active"); | |
| } | |
| return false; | |
| } | |
| }); | |
| </script> | 
原文:https://www.cnblogs.com/yizhiduxiublog/p/12558273.html