jquery 순수한 스타일 간이tab 옵션 카드

2253 단어 jquerytab 탭
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>  index().eq()   tab   </title>
<style type="text/css">
<!--
*{ margin:0; padding:0; font-size:12px; font-family:Arial, Helvetica, sans-serif;}
#menu{ margin:100px auto 0px auto; width:800px; height:30px; background:#e2e2e2; border-top:1px solid #898989;   border-left:1px solid #898989; border-right:1px solid #898989;}
#menu li { float:left; text-align:center; height:30px; line-height:30px; cursor:hand; list-style:none; padding:0px 20px; 
background:#797077; color:#fff; border-bottom:none;}
#menu li.hover { background:#aea4ab; border-bottom:none;}
#menu li.selected { color:#361f31; background:#fff; border-bottom:none;}
.hide{ display:none;}
#tab_box{ margin:0px auto 0px auto; padding:20px; width:760px; height:100px; border:1px solid #898989; border-top:none; }
/*   alert(hq_li.length);*/
-->
</style>
<script src="jquery-1.7.1.min.js" type="text/javascript"></script>           。
<script type="text/javascript">
$(function(){ 
      var hq_li=$("#menu ul li");
      hq_li.click(function(){ $(this).addClass("selected").siblings().removeClass("selected");
   
      var index = hq_li.index(this);
     $("#tab_box > div").eq(index).show().siblings().hide(); })

     hq_li.hover(function(){$(this).addClass("hover").siblings().removeClass("hover"); }) 
})
</script>
</head>
<body>
<div id="menu">
  <ul>
    <li class="selected">  </li>
    <li>  </li>
    <li>  </li>
  </ul>
</div>
<div id="tab_box"> 
  <div>    -http://www.resunnet.com 11 ,       li index()    。</div>
  <div class="hide">222  eq()      index()    。</div>
  <div class="hide">333       ,     !</div>
</div>

</body>
</html>

좋은 웹페이지 즐겨찾기