jquery 순수한 스타일 간이tab 옵션 카드
<!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>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
jQuery 전후 예이 기사에서는 jquery after() 및 before() 메소드의 예를 볼 것입니다. before() 메서드는 선택한 요소 앞에 지정된 콘텐츠를 삽입합니다. after() 메서드는 선택한 요소 뒤에 지정된 콘텐츠...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.