继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

jquery 选项卡

别打扰我我要学习
关注TA
已关注
手记 276
粉丝 20
获赞 131

   <style type="text/css">
       .topTitle{
           background-color: yellow;
           width: 300px;
           height: 30px;
       }

       .topTitle ul{
           list-style-type: none;
           margin-left: -50px;
       }
       .topTitle ul li{
           float: left;
           line-height: 30px;
           cursor: pointer;
           margin-left: 30px;
           width: 40px;
           padding-left:20px;
           text-align: center;
       }

       .content{
           width: 300px;
           height: 300px;
           background-color: fuchsia;
       }
       .content div{
           display: none;
       }
       .content .nowShow{
           display: block;
       }
</style>
   </head>

   <body>
       <div class="topTitle">
           <ul>
               <li>标题1</li>
               <li>标题2</li>
               <li>标题3</li>
           </ul>
       </div>

       <div class="content">
           <div class="nowShow">标题1</div>
           <div>标题2</div>
           <div>标题3</div>
       </div>


   </body>
<script type="text/javascript">
   $(document).ready(function() {
       $(".topTitle ul li").mouseover(function() {
           var dd = $(".content>div").eq($(".topTitle ul li").index(this));
           dd.addClass("nowShow");
           dd.siblings().removeClass("nowShow");//siblings()遍历
       });
   });
</script>

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP