点击菜单跳转页面,然而跳转后的页面字体并没有加粗用如下代码

<div class="bg01 menu">
                    <img class="img01" src="../images/c_bg01.gif" alt=""  />
                     <ul>
                        <a href="x_bumen.php"><li>部门设置</li></a>
                        <a href="x_yhshezhi.php"><li>用户设置</li></a>
                         <a href="x_quanxian.php"><li>权限设置</li></a>
                         <a href="x_rizhi.php"><li class="img">日志管理</li></a>
                     </ul>
          </div>
        <script>
            $(document).ready(function(){
                $(".menu a").each(function(){
                    $this = $(this);
                    if($this[0].href==String(window.location)){
                        $this.addClass("active");
                    }
                });
            });

        </script>

给点击项添加样式

相关文章:

  • 2022-12-23
  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-22
  • 2021-12-13
  • 2022-01-17
猜你喜欢
  • 2022-03-09
  • 2022-12-23
  • 2021-09-07
  • 2022-12-23
  • 2021-12-03
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案