精慕门6263188
2015-05-08 14:56
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表然后取他的子节点,为什么最后的效果是我放上去任何一行整张表的背景都变了呀,
childNodes 换成 children 试试
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题