分享java带来的快乐

我喜欢java新东西

鼠标划过高亮度显示所在的行

<table width=100% bgcolor=cccccc onmouseout="select_row(null)">
 <tr id="row0" onmouseover="select_row(this)">
  <td>
   ...
  </td>
 </tr>
 <tr id="row0" onmouseover="select_row(this)">
  <td>
   ...
  </td>
 </tr>
 <tr id="row0" onmouseover="select_row(this)">
  <td>
   ...
  </td>
 </tr>


</table>
<script language="javascript">  
  var   theCurrentTr;  
  function   select_row(obj)  
  {  
  if(theCurrentTr!=null)   theCurrentTr.bgColor="";  
  theCurrentTr=obj;  
  if(theCurrentTr!=null)   theCurrentTr.bgColor="blue";  
   
  }  
  </script>

<br>
<br>
移出时还记录最后鼠标所在的行:
<table width=100% bgcolor=cccccc>
 <tr id="row0" onmouseover="select_row(this)">
  <td>
   ...
  </td>
 </tr>
 <tr id="row0" onmouseover="select_row(this)">
  <td>
   ...
  </td>
 </tr>
 <tr id="row0" onmouseover="select_row(this)">
  <td>
   ...
  </td>
 </tr>


</table>

posted on 2008-12-20 17:19 强强 阅读(245) 评论(0)  编辑  收藏 所属分类: web技巧


只有注册用户登录后才能发表评论。


网站导航: