注册 登录 充值会员 退出
毕业设计 PHP源码
充值

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

作者/代码整理:  (转载请附加本文地址,带有“懒人原生”字样的谢绝转载) 发布日期:2017-06-09
可多次使用的jQuery tab选项卡插件
一款基于jQuery实现的选项卡特效,可在同一个网页页面多次使用的tab选项卡插件。


js代码

<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>