分类分类
更新时间:2026-05-10 21:00:31作者:zhao
这篇文章主要介绍了javascript表格隔行变色加鼠标移入移出及点击效果的方法,涉及javascript实现隔行变色及鼠标点击效果的相关技巧,非常具有实用价值,需要的朋友可以参考下
本文实例讲述了javascript表格隔行变色加鼠标移入移出及点击效果的方法。分享给大家供大家参考。具体分析如下:
表格隔行变色,也是一个提高用户体验的js效果。
效果实现:
表格奇偶行的颜色不一样。这样可以防止用户看数据时串行。
鼠标移入某行时变颜色,移出再变回来。这样可以让用户清楚的知道自己正在看哪一行。
表格点击变色。便于用户选中自己想保留的项。
说明:
i%2 每个数和2取模的值,只有0和1两种,这样就可以实现隔行变色的效果
tables_li[i].onoff = 1; 为了实现点击变色,鼠标移入移出时,颜色不被覆盖。
上代码:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/>
<title>无标题文档</title>
<style>
table{
border-collapse:collapse
}
tabletd{
height:26px;
font-size:12px;
color:#333;
border:1pxsolid#09c;
text-align:center;
padding:010px;
}
</style>
</head>
<body>
<script>
window.onload=function(){
vartables=document.getElementById("tables");
vartables_li=tables.getElementsByTagName("tr");
vari=0;
varlen=tables_li.length;
for(i=0;i<len;i++){
tables_li[i].onoff=1;
tables_li[i].index=i;
tables_li[i].style.backgroundColor=i%2?"#ace":"";
tables_li[i].onmouseover=function(){
if(this.onoff==1){
this.style.backgroundColor="#06c";
}
}
tables_li[i].onmouseout=function(){
if(this.onoff==1){
this.style.backgroundColor=this.index%2?"#ace":"";
}
}
tables_li[i].onclick=function(){
if(this.onoff==1){
this.onoff=0;
this.style.backgroundColor="#069";
}else{
this.onoff=1;
this.style.backgroundColor=this.index%2?"#ace":"";
}
}
}
}
</script>
<tablewidth="500"border="0"align="center"
cellpadding="0"cellspacing="0"id="tables">
<tr>
<td>1</td>
<td>内容内容</td>
</tr>
<tr>
<td>2</td>
<td>内容内容</td>
</tr>
<tr>
<td>3</td>
<td>内容内容</td>
</tr>
<tr>
<td>4</td>
<td>内容内容</td>
</tr>
<tr>
<td>5</td>
<td>内容内容</td>
</tr>
<tr>
<td>6</td>
<td>内容内容</td>
</tr>
<tr>
<td>7</td>
<td>内容内容</td>
</tr>
<tr>
<td>8</td>
<td>内容内容</td>
</tr>
<tr>
<td>9</td>
<td>内容内容</td>
</tr>
<tr>
<td>10</td>
<td>内容内容</td>
</tr>
</table>
</body>
</html>
希望本文所述对大家的javascript程序设计有所帮助。
相关
修真情缘角色扮演303.33 MBv1.0.02026-05-10
下载我的小独角兽女孩休闲益智380.89 MBv1.0.232026-05-10
下载超级种田男孩手机版经营养成1.31Gv1.0.92026-05-10
下载不必要的实验冒险游戏64.9 MBv1.1.592026-05-10
下载军师联盟策略游戏163.2 MBv0.0.12026-05-10
下载翻天喜地凑大钱手机版休闲益智138.72 MBv1.0.92026-05-10
下载东离剑游纪手游动作射击1.6Gv1.4.22026-05-10
下载天猫养车商家版App学习办公74.95 MBv0.6.12026-05-10
下载掌上命运方舟App手游辅助137.48 MBv1.9.12026-05-10
下载退役军人服务APP生活服务67.16 MBv1.2.52026-05-10
下载屯漫漫画APP资讯阅读23.06 MBv2.0.32026-05-10
下载蛋仔派对蛋壳App手游辅助185.73 MBv0.0.22026-05-10
下载









