改变颜色 这里哪里有错

来源:9-22 编程练习

Maxvics

2019-01-29 20:57

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回答

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

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

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题