求解:参考代码有一处理解不了
window.onload = function(){
Highlight();
}
function Highlight(){
var tbody = document.getElementById('table').lastChild;//这里的意思是table元素的最后一个子节点
trs = tbody.getElementsByTagName('tr'); //这里不就变成返回table元素最后一个子节点对象中tr的集合了嘛???
for(var i =1;i<trs.length;i++){
trs[i].onmouseover = function(){
this.style.backgroundColor ="#f2f2f2";
}
trs[i].onmouseout = function(){
this.style.backgroundColor ="#fff";
}
}
}