//封装tabs函数

Posted 记录下自己走过前端的坑~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了//封装tabs函数相关的知识,希望对你有一定的参考价值。

//封装tabs函数
function tabs(tabTit,on,tabCon){
$(tabCon).each(function(){
$(this).children().eq(0).show();
});
$(tabTit).each(function(){
$(this).children().eq(0).addClass(on);
});
$(tabTit).children().hover(function(){
$(this).addClass(on).siblings().removeClass(on);
var index = $(tabTit).children().index(this);
$(tabCon).children().eq(index).show().siblings().hide();
});
}
//可以反复多次调用 tabs有三个参数,第一个是当前选项,第二个是当前效果,第三个是父元素的子元素显示或隐藏
tabs("#hot","sale-hot","#baby");

以上是关于//封装tabs函数的主要内容,如果未能解决你的问题,请参考以下文章

第28天:js-Tab栏切换封装函数

tab切换代码优化

使用seajs封装js模块

jq 版的tab切换

delphi 中封装的VCl窗体Tab键响应问题

用js同时封装两个函数,任意调用不同格式选项卡