trs[i].onmouseout = function(){
this.style.backgroundColor ="#fff";
}
function Highlight(){
var tbody = document.getElementById('table').lastChild;//这一行,为什么是lastChild,lastChild不是只获取了表格的最后一行吗,
trs = tbody.getElementsByTagName('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";
}
}
}
哪句话?第一个是表示最后一个子节点,第二个表示的是子节点数