function light(){
var trs = document.getElementsByTagName("tr");
for(var i=1;i<trs.length;i++){
trs[i].onmouseover = function(){
this.style.backgroundColor ="#f2f2f2";//这个this是指什么,trs[i]吗?它是什么意思??
}
trs[i].onmouseout = function(){
this.style.backgroundColor ="#fff";
}
}
}
就是你鼠标放的那一行(比如你放在 i=2的tr上,那第三行就执行这个函数)