首页 > 代码库 > jquery写tab切换,三行代码搞定

jquery写tab切换,三行代码搞定

<style>p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 28.0px Consolas; color: #888471 } p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 28.0px Consolas; color: #888471; min-height: 33.0px } span.Apple-tab-span { white-space: pre }</style>

<script type="text/javascript">

 

      $("button").on("click",function(){

       var index=$(this).index();//下标,相当于js中的for循环

        $("div").eq(index).show().siblings("div").hide();

      })

 

</script>

//html结构自行添加

jquery写tab切换,三行代码搞定