桂林网站建设
您的位置: 首页> 网页设计

我要叫喊

学习本类知识需要注意某些知识点,它们之间有些关联

      技术文档
      本站业务
      本类热点
  1. css+div知识:彻底...
  2. 网站中木马了,...
  3. Dreamweaver 不自动...
  4. flash中抠图,抠...
  5. 网页音乐播放器...
  6. flash图片展示,fl...
  7. javascript播放图片...
  8. 字体下载
  9. 更多教程
  10. flash教程
又一种表格行自动变色
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>111</title>
</head>

<body>
<table width="55%" border="2" align="center">
  
<tr onmouseover="this.style.backgroundColor='#cc0000'" onmouseout="this.style.backgroundColor=''">
    
<td><div align="center">表格内容</div></td>
    
<td><div align="center">表格内容</div></td>
  
</tr>
  
<tr onmouseover="this.style.backgroundColor='#cc0000'" onmouseout="this.style.backgroundColor=''">
    
<td><div align="center">表格内容</div></td>
    
<td><div align="center">表格内容</div></td>
  
</tr>
  
<tr onmouseover="this.style.backgroundColor='#cc0000'" onmouseout="this.style.backgroundColor=''">
    
<td><div align="center">表格内容</div></td>
    
<td><div align="center">表格内容</div></td>
  
</tr>
</table>



</body>
</html>