$(function(){ $(".st_mbtn").click(function(){ $(".st_mbtn_mask").addClass("show"); }) $(".st_mbtn_close").click(function(){ $(".st_mbtn_mask").removeClass("show"); if($(".p_c_tree").length){ console.log("tree true"); $(".open .p_c_content").slideUp(); $(".open").removeClass("open"); } }) if($(".p_c_tree").length){ $(".hasChild").click(function(){ if($(this).hasClass("open")){ }else{ $(this).parent().children(".open").removeClass("open").children(".p_c_content").slideUp(); $(this).addClass("open").children(".p_c_content").slideDown(); } }) } })