<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新增上面二項程式碼。