有一个三级分类
想在链接跳转后依然保持着展开的状态
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();
})
相关分类