qq_0投币许愿_04192931
2018-09-28 11:07
//鼠标滑过的背景颜色
function onload2(){
var table=document.getElementById("table");
var trs=table.childNodes;
for(var i=0;i<trs.length;i++)
{
trs[i].onmouseover=function()
{
//alert(trs.length);
this.style.backgroundColor="#f2f2f2";
}
trs[i].onmouseout=function()
{
this.style.backgroundColor="";
}
}
}
var trs=table.childNodes; 这一句换成 var trs = table.getElementsByTagName("tr"); 我给不你了你完美的解释!
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题