切换效果封装

 



//切换
function toggleFun(tab,content){
var $tab = $(tab);
$tab.find("li").eq(0).addClass("active");
$tab.find("li").on("click",function(){
var index = $(this).index();
$(this).addClass("active").siblings().removeClass("active");
$(content).children("div").eq(index).show().siblings().hide();
})
}


toggleFun(".new-ul",".news-con");

posted on 2017-10-26 17:52  小影子棒棒哒  阅读(78)  评论(0)    收藏  举报

导航