jQuery+HTML左侧导航栏,点击显示隐藏二级菜单

HTML样式代码

  • 客户管理
  • 内部信息
    • ⭘ 通知公告
    • ⭘ 员工信息
    • ⭘ 部门信息
  • 站内邮件
  • 管理员

CSS样式代码

li:hover{
            background: #2c3b41;
        }
        .left{
            height: 620px;
            width: 260px;
            background-color: #222d32;
            color: white;
            float: left;

        }
        .left1{
            width: 100%;
            font-size: 23px;
            list-style: none;
            margin-top: 25px;
            float: left;
        }
        .two{
            display: none;
            list-style: none;
            margin-top: 25px;
        }

jQuery代码

效果

jQuery+HTML左侧导航栏,点击显示隐藏二级菜单_第1张图片

你可能感兴趣的:(JQuery,html,jquery)