我想要的效果是,当鼠标移到表格的行上时,整行背景变色,鼠标移出时背景回到之前的颜色;
但是我这个弄出来。鼠标移入时背景是变了色的。但是移出时背景没有变色还是移入时变的那个颜色,求大神帮解决一下,并能说出我的问题出在哪里最好,谢谢哈;^_^`
下面是我的代码
window.onload = function(){
var otadb = document.getElementById('osd');
var oblocolo ='';
for(var i=0;i
//下面是鼠标移到表格上时整行背景变色,当鼠标离开时整行背景回到原来的颜色;
otadb.tBodies[0].rows[i].onmousemove = function(){
oblocolo=this.style.backgroundColor;
this.style.backgroundColor = '#552940';
};
otadb.tBodies[0].rows[i].onmouseout = function(){
this.style.backgroundColor =oblocolo;
}
//下面的代码是背景隔行变色
if(i % 2 == 0){
otadb.tBodies[0].rows[i].style.backgroundColor = '#ccc';
}
else{
otadb.tBodies[0].rows[i].style.backgroundColor = '';
}
};
};
编号姓名性别年龄 01张三男2102李四男2303张伟男3004赵翰义男4005周伟男35
|