为什么就是不变色呢?

来源:9-22 编程练习

慕粉15160033427

2016-07-16 15:27

    window.onload = function(){

                  

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

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

    

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

        tr[i].setAttribute("onmouseover","over(this)");

        tr[i].setAttribute("onmouseout","out(this)");

     

}

};

     function over(e){

         e.style.backgroundColor="#22f2f2";

     }

     function out(e){

         e.style.backgroundColor="#fff";

     }

这段怎么就是不起作用呢?

写回答 关注

1回答

  • 飞面大神
    2016-07-16 15:48:35
    已采纳

    浏览器问题吧,我复制试了一下,可以变色啊


JavaScript进阶篇

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

468060 学习 · 21891 问题

查看课程

相似问题