第一种: expresión
代码如下:
<html>
<cabeza>
<meta http-equiv="Tipo de contenido" content="text/html; charset=gb2312" />
<estilo tipo="texto/css">
.tablestyle{
color de fondo:#CCCCCC; borde:#ff0000 sólido 2px; colapso de fronteras: colapso; cursor:mano; ancho: 100%;
}
.tablestyle td{ borde:#ff0000 sólido 2px; colapso de frontera: colapso;}
.estilo de tabla tr{
onmouseover:expresión(onmouseover=función()
{
this.style.color='rojo';
this.style.backgroundColor='amarillo'
});
onmouseout:expresión(onmouseout=función()
{
este.estilo.col
this.style.backgroundColor=''
}
);
}
</estilo>
<título>无标题文档</título>
</head>
<body>
<table class="tablestyle" width="0" border="0" cellspace="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>
</tabla>
</cuerpo>
</html>
--------------------------
简单的隔行变色:
<estilo tipo="text/css">
< !- -
tr {color de fondo:expresión((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>
------------------- -----------
每个单元格变色:
<estilo tipo="texto/css">
<!--
tr {color de fondo:expresión((this.sectionRowIndex%2==0)? "rojo":"azul")}
td {color de fondo:expresión((this.cellIndex%2==0)?"":((this.parentElement.sectionRowIndex%2==0)??"verde":" amarillo"))}
-->
</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>
------------------------
以上都用到expresión,实现变得很方便,但是,经测试,在IE6(其它版本我不知道)上很正常,在firefox上无任何反应…… ,要想在firefox上也有此效果,就要用第二种方法
(2)用JS
鼠标滑过变色:
<script language="javascript" >
ventana.onload=función showtable(){
var nombretabla=document.getElementById("mitabla");
var li=nombretabla.getElementsByTagName("tr");
for (var i=0;i<=li.length;i++){
li[i].style.backgroundColor="#FFB584";
li[i].onmouseover=function(){
this.style.backgroundColor="#FFFFFF";
}
li[i].onmouseout=function(){
this.style.backgroundColor="#FFB584"
}
}
}
</script>
<table id="mytable">
<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>
-----------------------
Nota principal:
<script language="javascript">
window.onload=function showtable(){
var tablename=document.getElementById("mytable");
var li=nombretabla.getElementsByTagName("tr");
for (var i=0;i<=li.length;i++){
if (i%2==0){
li[i].style.backgroundColor="#FFB584";
}else li[i].style.backgroundColor="#FFFFFF";
}
}
</script>
<table id="mytable">
<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>
------------------------
以上都要用到JS,还需要table有个id,可以对指定的table操作,但是,假如遇到某人的firefox装了NoScript的话……可以无视了