jquery 기반 tab 전환 js 원리

1320 단어 jquery탭 전환
html 코드:
 
<div class="details">
<ul class="tab"><li class="on" rel="a1"><b> </b></li><li rel="a2"><b> </b></li><li rel="a3"><b> </b></li><li></li></ul>
<dl id="a1">11111111111111111111111111111111
</dl>
<dl id="a2" style="display:none">
22222222222222222222222222222222222
</dl>
<dl id="a3" style="display:none">3333333333333333333333333333333333333
</dl>
</div>
js 코드:
 
$(function(){
$(".tab>li").mouseover(function(){
$(".tab>li").removeClass("on");
$(this).addClass("on");
var target = $('#' + this.rel);
if (target.size() > 0) {
$('.details > dl').hide();
target.show();
} else {
alert('There is no such container.');
}
});
});
효과 그림:
패키지 다운로드 주소

좋은 웹페이지 즐겨찾기