有一个三级分类想在链接跳转后依然保持着展开的状态js:$(".first-nav").click(function(){ if($(this).siblings(".first-nav").find(".arrow").hasClass("active90")){ $(this).siblings(".first-nav").find(".arrow").removeClass("active90"); } $(this).siblings(".first-nav").find(".second").slideUp(); $(this).children(".arrow").toggleClass("active90"); $(this).find(".second").slideToggle(); }) $(".second-nav").click(function(event){ event.stopPropagation(); $(this).children(".arrow").toggleClass("active90"); $(this).find(".thirdwp").slideToggle(); })
添加回答
举报
0/150
提交
取消