jQuery(document).ready(function($) { const $box = $('.sub_menu_box'); // depth01 Ŭ¸¯ ¡æ ÀÚ½ÅÀÇ .drop Åä±Û, ´Ù¸¥°Ç ´Ý±â $box.on('click', '.nav_link1.depth01 > p', function(e) { e.preventDefault(); e.stopPropagation(); const $drop1 = $(this).closest('li').find('> .drop'); const $drop2 = $box.find('.nav_link2.depth02 > .drop2'); $drop2.removeClass('show'); $drop1.toggleClass('show'); }); // depth02 Ŭ¸¯ ¡æ ÀÚ½ÅÀÇ .drop2 Åä±Û, ´Ù¸¥°Ç ´Ý±â $box.on('click', '.nav_link2.depth02 > p', function(e) { e.preventDefault(); e.stopPropagation(); const $drop2 = $(this).closest('li').find('> .drop2'); const $drop1 = $box.find('.nav_link1.depth01 > .drop'); $drop1.removeClass('show'); $drop2.toggleClass('show'); }); // µå·Ó´Ù¿î ³»ºÎ Ŭ¸¯Àº ÀüÆÄ ¸·±â (´ÝÈû ¹æÁö) $box.on('click', '.drop, .drop2', function(e) { e.stopPropagation(); }); // ¹®¼­ ¾Æ¹« °÷À̳ª Ŭ¸¯ÇÏ¸é ´Ý±â $(document).on('click', function() { $box.find('.drop, .drop2').removeClass('show'); }); });