ABP後臺管理頁面AdminLTE框架,實現選單項點選後,選單展開當前選單項高亮

风浪發表於2024-04-12
<style>
    .CurrentMenuColor{
        background-color: #007bff;
        color: #fff;
    }
</style>
<script> //左側選單定位 $(document).ready(function () { var pathname = window.location.pathname + window.location.search; $(".nav li a").each(function () { var href = $(this).attr("href"); if (pathname == href) { $(this).parents("ul").parent("li").addClass("menu-is-opening menu-open"); $(this).parent("li").addClass("CurrentMenuColor"); } }); }); </script>

_Layout.cshtml新增上面二項程式碼。

相關文章