/** * Created by house on 2019/3/13. */ $(function(){ $('.inner .inner_content .lf .typelist > ul > li').each(function () { var that=$(this) if($(this).find('.lv2').length>0){ //::after that.addClass('have_lv2') //a标签 that.children('a').attr({ 'href':'javascript:;' }) //下拉 that.children('a').click(function () { that.find('.lv2').slideToggle() }) } }) if($(window).width()>768){ }else{ if($('.inner .inner_content .lf .typelist').length>0){ $('.inner .inner_content .lf .top_title').addClass('on') } $('.inner .inner_content .lf .top_title').click(function () { $('.inner .inner_content .lf .typelist').slideToggle() }) } })