改变表格单元格的背景颜色

功能        : 改变表格单元格的背景颜色
作者        : 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];
        }
      }
    }
  }
}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值