$(function() { let pathName = window.location.pathname; $('.menuList .cbox-3').each(function() { let index = $(this).index(); let curUrl = $('.menuList .cbox-3:eq('+index+') a').attr('href'); if (pathName == curUrl) { $(this).addClass('active').siblings().removeClass('active'); } }); $('.more').click(function() { $('.menuList').css({"left": "0px", "opacity": "1"}); $('.e_text-4').addClass('textMove'); }); $('.close').click(function() { $('.menuList').css({"left": "100%", "opacity": "0"}); $('.e_text-4').removeClass('textMove'); }); })