hover()는 간편하고 자주 쓰는 방식이다바로 사용법 알려드림✅ 예시 1: hover() 사용$("#listForm tr").hover( function () { // 마우스 진입 시 $(this).css("background-color", "#f5f5f5"); }, function () { // 마우스 이탈 시 $(this).css("background-color", ""); }); ✅ 예시 2: mouseenter + mouseleave 별도로 사용$("#listForm tr").on("mouseenter", function () { $(this).css("background-color", "#f5f5f5");});$("#..