表格行随鼠标移进移出切换样式
<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title>Untitled Document</title><script language="JavaScript">function over(id){var e=document.getElementById(id);e.style.backgroundColor='#0478fb';e.style.color='#ffffff';}function out(id){var e=document.getElementById(id);e.style.backgroundColor='#FFFFFF';e.style.color='#000000';}</script></head><body><table width="200" border="0"><tr id="123" onMouseOver="over(this.id);" onmouseout="out(this.id);"><td>jnihao</td><td>jnihao</td><td>jnihao</td></tr><tr id="456" onMouseOver="over(this.id);" onmouseout="out(this.id);"><td>jnihao</td><td>jnihao</td><td>jnihao</td></tr><tr id="789" onMouseOver="over(this.id);" onmouseout="out(this.id);"><td>jnihao</td><td>jnihao</td><td>jnihao</td></tr></table></body></html>?