HTML 페이지의 테이블은 한 줄씩 표시할 수 있습니다. 물론 div에 마우스를 놓으면 색상이 변경되도록 설정할 수도 있습니다. 코드 복사 코드는 다음과 같습니다. <br>var currentActiveRow; //현재 활성 행 <p>//선택한 행의 색상 변경<br>functionchangeActiveRow(obj) {<br> if (currentActiveRow) {<br> currentActiveRow.style.BackgroundColor = "";<br> }<br> currentActiveRow = obj; <br> currentActiveRow.style.BackgroundColor = "#F2F2F2";<br>}</p> <p> 그런 다음 td onmouseover="changeActiveRow(this)"에서 onmousehover 또는 onclick 이벤트를 설정하세요