jQuery TAB切换菜单示例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .hide{
            display: none;
        }
        .menu{
            height: 40px;
            background-color: #eeeeee;
            line-height: 40px;
        }
        .active{
            background-color: brown;
        }
        .menu .item{
            float: left;
            padding: 0 15px;
            border-right: 1px solid red;
            cursor: pointer;    /*鼠标变小手*/
        }
        .content{
            height: 400px;
            border: 1px solid black;
        }
        .text{
            height: 400px;
        }
    </style>
</head>
<body>
  <div style="width:700px; margin: 0 auto;">
      <div class="menu">
          <div class="item active" top="1">菜单一</div>
          <div class="item" top="2">菜单二</div>
          <div class="item" top="3">菜单三</div>
      </div>
      <div class="content">
          <div class="text" bottom="1" style="background-color: red;">内容一</div>
          <div class="text hide" bottom="2" style="background-color: blue;">内容二</div>
          <div class="text hide" bottom="3" style="background-color: darkgreen;">内容三</div>
      </div>
  </div>

  <script src="jquery-1.12.4.js"></script>
  <script>
      $(".item").click(function(){
          $(this).addClass("active").siblings().removeClass("active");
          var value = $(this).attr("top");
          $(".content").children("[bottom='" + value + "']").removeClass("hide").siblings().addClass("hide");
      });
  </script>
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值