功能 : 改变表格单元格的背景颜色
作者 : zjly
修改时间 : 2007-04-11
电子邮件 : zjly4@163.com
参数
id : 必选。确定变色的表格
mod : 可选。表示几次颜色一个循环,默认为2
colorList : 可选。里面颜色可用指定的颜色代替,以改变表格背景色
colorOver : 可选。鼠标移到表格单元格上时的颜色,默认为灰色
color : 可选。以1表示鼠标移动时表格单元格变色,其它数值均不变色
步骤
1、指定要变色的表格ID
2、根据需要选择要更改的参数
3、输出表格
示例
<table id="table">
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
<script type="text/javascript" src="/tablecolor.js">
var tab=new changeColor()
tab.setid("table");
tab.setmod(3);
tab.setColorList("#eee,#ccf,#fff");
tab.setColorOver("#f5f5f5");
tab.setColor(0);
</script>
*************************************************/
function changeColor(){
this.id = "";
this.mod = 2;
this.colorList = "#c5c5c5,#fff";
this.colorOver = "#f5f5f5";
this.color = 1;
}
changeColor.prototype.setId=function(id){
this.id=id;
}
changeColor.prototype.setMod=function(mod){
this.mod=mod;
}
changeColor.prototype.setColorList=function(colorlist){
this.colorList=colorlist;
}
changeColor.prototype.setColorOver=function(colorover){
this.colorOver=colorover;
}
changeColor.prototype.setColor=function(color){
this.color=color;
}
changeColor.prototype.goOut=function(){
id = this.id;
mod = this.mod;
colorList = this.colorList;
colorOver = this.colorOver;
color = this.color;
var o=document.getElementById(id).getElementsByTagName("TR");
var str=colorList.split(",");
if(mod<=1){
mod=1;
}
if(mod>str.length){
mod=str.length;
}
if(color!=1){
color=0;
}
for(var i=0; i<o.length; i++){
var x=i%mod;
if(typeof colorList=="string" && colorList.indexOf(",")!=-1){
o[i].style.background=str[x];
o[i].id=i;
o[i].c=colorOver;
o[i].m=mod;
if(color == 1){//判断是否鼠标移上时变色
o[i].οnmοuseοver=function(){
this.style.background=this.c;
}
o[i].οnmοuseοut=function(){
var x=this.id%this.m;
this.style.background=str[x];
}
}
}
}
}
作者 : zjly
修改时间 : 2007-04-11
电子邮件 : zjly4@163.com
参数
id : 必选。确定变色的表格
mod : 可选。表示几次颜色一个循环,默认为2
colorList : 可选。里面颜色可用指定的颜色代替,以改变表格背景色
colorOver : 可选。鼠标移到表格单元格上时的颜色,默认为灰色
color : 可选。以1表示鼠标移动时表格单元格变色,其它数值均不变色
步骤
1、指定要变色的表格ID
2、根据需要选择要更改的参数
3、输出表格
示例
<table id="table">
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
<script type="text/javascript" src="/tablecolor.js">
var tab=new changeColor()
tab.setid("table");
tab.setmod(3);
tab.setColorList("#eee,#ccf,#fff");
tab.setColorOver("#f5f5f5");
tab.setColor(0);
</script>
*************************************************/
function changeColor(){
this.id = "";
this.mod = 2;
this.colorList = "#c5c5c5,#fff";
this.colorOver = "#f5f5f5";
this.color = 1;
}
changeColor.prototype.setId=function(id){
this.id=id;
}
changeColor.prototype.setMod=function(mod){
this.mod=mod;
}
changeColor.prototype.setColorList=function(colorlist){
this.colorList=colorlist;
}
changeColor.prototype.setColorOver=function(colorover){
this.colorOver=colorover;
}
changeColor.prototype.setColor=function(color){
this.color=color;
}
changeColor.prototype.goOut=function(){
id = this.id;
mod = this.mod;
colorList = this.colorList;
colorOver = this.colorOver;
color = this.color;
var o=document.getElementById(id).getElementsByTagName("TR");
var str=colorList.split(",");
if(mod<=1){
mod=1;
}
if(mod>str.length){
mod=str.length;
}
if(color!=1){
color=0;
}
for(var i=0; i<o.length; i++){
var x=i%mod;
if(typeof colorList=="string" && colorList.indexOf(",")!=-1){
o[i].style.background=str[x];
o[i].id=i;
o[i].c=colorOver;
o[i].m=mod;
if(color == 1){//判断是否鼠标移上时变色
o[i].οnmοuseοver=function(){
this.style.background=this.c;
}
o[i].οnmοuseοut=function(){
var x=this.id%this.m;
this.style.background=str[x];
}
}
}
}
}