html:

<ul class="tab">
       <li>最新</li>
       <li class="cur">热门</li>
       <li>新闻</li>
 </ul>
 <div>11</div>
 <div class="on">22</div>
 <div>33</div>

css:

div{margin:0;padding:0;width:184px;height:200px;border:1px solid #ccc;display:none;}
.tab{margin:0;padding:0;list-style:none;width:200px;overflow:hidden;}
.tab li{float:left;width:60px;height:30px;background:#ccc;color:#fff;border:1px solid red; text-align:center;line-height:30px;cursor:pointer; }
.on{display:block;}
.tab li.cur{background:blue;}

js:

  $(document).ready(function(){
        $(".tab li").click(function(){
        $(".tab li").eq($(this).index()).addClass("cur").siblings().removeClass('cur');
$("div").hide().eq($(this).index()).show();
       //另一种方法: $("div").eq($(".tab li").index(this)).addClass("on").siblings().removeClass('on'); 

        });
    });

mark:了解eq(),index(),siblings()函数

 

 

相关文章:

  • 2022-03-01
  • 2021-07-23
  • 2022-12-23
  • 2022-12-23
  • 2019-11-13
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-11
  • 2021-04-08
  • 2021-12-10
  • 2022-01-16
  • 2022-12-23
相关资源
相似解决方案