/*产品目录 begin*/ /*产品目录第一个默认展开*/ $(function(){ $(".cp_type .bd ul li").first().children('div').show();$(".cp_type .bd ul li").first().addclass('on');}); $(".cp_type .bd ul li p span").click(function () { if($(this).parents('li').hasclass('on')){ $(this).parents('li').removeclass('on').find('div').stop().slideup(); }else{ $(this).parents('li').find('div').removeattr("style"); $(this).parents('li').addclass('on').find('div').stop().slidedown(); } }); if(document.body.clientwidth <= 1024){ $(".cp_type .hd").click(function () { if($(this).hasclass('on')){ $(this).next('div').removeattr("style"); $(this).removeclass('on').next('div').stop().slideup(); }else{ $(this).next('div').removeattr("style"); $(this).addclass('on').next('div').stop().slidedown(); } }); } /*产品目录 end*/