问答详情
源自:9-22 编程练习

改变颜色 这里哪里有错

window.onload = function(){             

     // 鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。

         var tr=document.getElementsByTagName('tr');         

         for(var i=0;i<tr.length;i++)

         {

        tr[i].onmouseover=function (){

    tr[i].style.background='#f2f2f2';}

    

    tr[i].onmouseout=function (){

        tr[i].style.background='#fff';} 

         }

      }


提问者:Maxvics 2019-01-29 20:57

个回答

  • 慕田峪0119123
    2019-02-01 16:15:16

    tr[i].style.background='#f2f2f2';  这个应该是tr[i].style.backgroundColor='#f2f2f2';吧