jQuery 하이라이트 테이블 행 마우스 위에 테이블 행을 강조 표시해야 합니다.쉽게 할 수 있는 일인 것 같네요, 그렇죠?특히 jQuery를 사용합니다.하지만 안타깝게도 전 그렇게 운이 좋지 않아요. 테이블 행을 강조 표시하기 위해 여러 솔루션을 테스트했지만 아무 것도 작동하지 않는 것 같습니다 :-( 다음 스크립트를 테스트했습니다. // TEST one jQuery(document).ready(function() { jQuery("#storeListTable tr").mouseover(function () { $(this).parents('#storeListTable tr').toggleClass("highlight"); alert('test'); // Just to test the mouseover..