$(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(); } }) } })