为了账号安全,请及时绑定邮箱和手机立即绑定

改变颜色 这里哪里有错

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';} 

         }

      }


正在回答

1 回答

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

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

改变颜色 这里哪里有错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信