$(".left_nav li .t i").click(function(){ $(this).parent(".t").toggleclass("hover"); $(this).parent(".t").next(".txt").slidetoggle() }) var sl=$(".left_nav li").length; if(sl>6){ $(".left_nav li").each(function(index){ if(index>5){ $(this).hide(0) } }) $(".left_nav .more").show() }else{ $(".left_nav .more").hide() } function opene(){ $(".left_nav li").each(function(index){ if(index>5){ $(this).slidetoggle(300); $(this).find(".t").removeclass("hover"); $(this).find(".txt").slideup(); } }) } $(".left_nav .more").click(function() { opene(); $(this).toggleclass("hover"); var text=$(this).find("span").text(); if(text=="展开"){ $(this).find("span").text("收起"); }else if(text=="收起"){ $(this).find("span").text("展开"); } }); if($("div").hasclass("owl-carousel")){ $('#scroll').owlcarousel({ items:4, autoplay:false, navigation:true, navigationtext: ["",""], scrollperpage:false }); } $(".details_box ul li .more").hover(function(){ $(this).next(".txt").fadein() },function(){ $(this).next(".txt").fadeout() });