我先获取table表,然后取他的子节点,为什么不行呀
window.onload = function(){
var child=document.getElementById("table").childNodes;
for(var i=0;i<child.length;i++)
{
child[i].onmouseover=function(){
this.style.backgroundColor="gray";
}
child[i].onmouseout=function(){
this.style.backgroundColor="white";
};
}
}
为什么我想获取table表然后取他的子节点,为什么最后的效果是我放上去任何一行整张表的背景都变了呀,