可多次使用的jQuery tab选项卡插件
262
0
jQuery选项卡tab选项卡选项卡插件

一款基于jQuery实现的选项卡特效,可在同一个网页页面多次使用的tab选项卡插件。
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
function tabs(tabTit,on,tabCon){
$(tabTit).children().hover(function(){
$(this).addClass(on).siblings().removeClass(on);
var index = $(tabTit).children().index(this);
$(tabCon).children().eq(index).show().siblings().hide();
});
};
tabs(".tab-hd","active",".tab-bd");
});
</script>热点素材
- 2,3701
- 2,3170
- 2,25612
- 2,1933
- 2,0891





