码迷,mamicode.com
首页 > Web开发 > 详细

CSS+JS鼠标悬停单元格变色

时间:2014-07-29 13:47:48      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:style   http   java   color   数据   io   for   cti   

  • 又一款鼠标悬停表格单元格,表格变色的实例效果,运用了CSS和JS两者技术的结合,因些兼容性非常好,而且易于控制,代码修改方便,跟表格读取动态数据没有任何关系,比较方便。

<html>
<head>
<title>鼠标悬停单元格变色</title>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
<style type="text/css">
<!--
#myTable{
width:100%;border-collapse:collapse;margin:1em 0;
}
#myTable th,td{
text-align:left;padding:.5em;border:1px solid #fff;
}
th{
background-color:#328aa4;color:#fff;
}
td{background:#e5f1f4;}
tr.even td{background:#e5f1f4;}
tr.odd td{background:#f8fbfc;}
tr.over td{background:#bce774;}
tr.out td{}
-->
</style>
</head>
<body onload="changeTableBg();">
<table width="500" id="myTable" cellspacing="0" cellpadding="0">
<tr>
<th>title</th>
<th>title</th>
<th>title</th>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
<td>Data</td>
</tr>
<tr>
<td>Data</td>
<td>Data</td>
<td>Data</td>
</tr>
</table>
<script type="text/javascript">
<!--
function changeTableBg()
{
var changeTr=document.getElementById("myTable").getElementsByTagName("tr");
for(i=0;i<changeTr.length;i++)
{
changeTr[i].className=(i%2>0)?"even":"odd";
changeTr[i].temp=changeTr[i].className;
changeTr[i].onmouseover=function(){
this.className=‘over‘;
}
changeTr[i].onmouseout=function(){
this.className=this.temp;
}
}
}
//-->
</script>
</body>
</html>

CSS+JS鼠标悬停单元格变色,布布扣,bubuko.com

CSS+JS鼠标悬停单元格变色

标签:style   http   java   color   数据   io   for   cti   

原文地址:http://www.cnblogs.com/youtianxia/p/3875021.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!