테이블을 설정하세요. 마우스가 특정 행으로 이동하면 색상이 변경됩니다. 마우스가 떠나면 색상이 원래 색상으로 변경됩니다. 각 줄에는 두 개의 마우스 이벤트가 필요합니다:
1. 마우스 재정의: onMouseOver
2. 마우스 아웃: onMouseOut
동시에 다음 두 이벤트는 이벤트 함수를 호출해야 합니다. 1. 구현 행 색상 설정:
resetColor(row)
2. 행 색상 변경 구현:
changeColor(row)
구현 코드:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> <html> <head> <title>变色表格示例</title> <script type="text/javascript"> function changeColor(row){ document.getElementById(row).style.backgroundColor='#9999FF'; } function resetColor(row){ document.getElementById(row).style.backgroundColor=''; } </script> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="this is my page"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <!--<link rel="stylesheet" type="text/css" href="./styles.css">--> </head> <body> <table width="200" border="1" cellspacing="1" cellpadding="1" align="center"> <tr><th>学校</th><th>专业</th><th>人数</th></tr> <tr align="center" id="row1" onMouseOver="changeColor('row1')" onMouseOut="resetColor('row1')"> <th>北大</th><th>法律</th><th>2000</th> </tr> <tr align="center" id="row2" onMouseOver="changeColor('row2')" onMouseOut="resetColor('row2')"> <th>清华</th><th>计算机</th><th>5000</th> </tr> <tr align="center" id="row3" onMouseOver="changeColor('row3')" onMouseOut="resetColor('row3')"> <th>人大</th><th>经济</th><th>6000</th> </tr> </table> </body> </html>
위 내용은 JavaScript+CSS+DIV를 사용하여 테이블 색상을 변경하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!