tr鼠标在与不在的效果.

<tr class='' onMouseOver='TrBgOn(this);' onMouseOut='TrBgOff(this);' >

 <script type="text/javascript">
 function TrBgOn(TrBgid){ 
  TrBgid.style.backgroundColor="#f3f3f5";
  TrBgid.style.cursor="hand";
 }
 function TrBgOff(TrBgid){ 
  TrBgid.style.backgroundColor="#ffffff";
 }
 </script>

posted @ 2007-06-01 09:07  烈马狂生  阅读(327)  评论(2编辑  收藏  举报