$(function () { const $category = "<?php echo $_GET['category_1']?>"; $(".category_list li a").each(function (){ if ($(this).hasClass($category)) { // class 비교 $(this).parent().addClass("on"); // li에 클래스 추가 } }) })