快速业务通道

CSS实现鼠标滑过表格变色

作者 佚名技术 来源 CSS编程 浏览 发布时间 2012-05-27

第一种: expression

代码如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style type="text/css">

.tablestyle{
 background-color:#CCCCCC; border:#ff0000 solid 2px; border-collapse:collapse;  cursor:hand;   width:100%;
 }
 
.tablestyle td{ border:#ff0000 solid 2px; border-collapse:collapse;}
 
.tablestyle tr{
 onmouseover:expression(onmouseover=function()
 {
  this.style.color=''red'';
  this.style.backgroundColor=''yellow''
  });
 onmouseout:expression(onmouseout=function()
 {

  this.style.col
  this.style.backgroundColor=''''
  }
 );
 }

</style>

<title>无标题文档</title>
</head>

<body>

   <table  class="tablestyle" width="0" border="0" cellspacing="0" cellpadding="0">
     <tr>
    <td>11111111111</td>
    <td>22222222222</td>
    </tr>
    <tr>
    <td>33333333333</td>
    <td>44444444</td>
    </tr>
    <tr>
    <td>55555</td>
    <td>66666666</td>
    </tr>
  <tr>
    <td>77777777777</td>
    <td>8888888888</td>
   </tr>
</table>

</body>
</html>

----------------------------

简单的隔行变色:

<style type="text/css">

<!--

tr {background-color:expression((this.sectionRowIndex%2==0)?"#E1F1F1":"#F0F0F0")}

-->

</style>

<table>

<tr><td>第1行</td><td>第1列</td></tr>

<tr><td>第2行</td><td>第2列</td></tr>

<tr><td>第3行</td><td>第3列</td></tr>

<tr><td>第4行</td><td>第4列</td></tr>

<tr><td>第5行</td><td>第5列</td></tr>

</table>

-------------------------------

每个单元格变色:

<style type="text/css">

<!--

tr {background-color:expression((this.sectionRowIndex%2==0)?"red":"blue")}

td {background-color:expression((this.cellIndex%2==0)?"":((this.parentElement.sectionRowIndex%2==0)?"green":"yellow"))}

-->

</style>

<table>

<tr><td>第1行</td><td>第1列</td></tr>

<tr><td>第2行</td><td>第2列</td></tr>

<tr><td>第3行</td><td>第3列</td></tr>

<tr><td>第4行</td><td>第4列</td></tr>

<tr><td>第5行</td><td>第5列</td></tr>

</table>

------------------------

以上都用到expression,实现变得很方便,但是,经测试,在IE6(其它版本我不知

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号