改变背景色时为什么一定要调用函数,不能直接使用对象改变呢?
程序如下:
window.onload = function(){
// 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
var mytr=document.getElementsByTagName("tr");
for(var i=0;i<mytr.length;i++){
mytr[i].onmouseover=function(){
myte[i].style.backgroundColor="#f2f2f2";}
mytr[i].onmouseout=function(){
myte[i].style.backgroundColor="#fff";}
}
}