this.style.backgroundColor中的this指的是哪个对象
window.onload = function(){
var trs = document.getElementsByTagName('tr');
for(var i = 1; i < trs.length; i++){
trs[i].onmouseover = function(){
this.style.backgroundColor = "pink";
}
trs[i].onmouseout = function(){
this.style.backgroundColor = "#fff";
}
}
}