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

为什么行不随着鼠标的移动而改变背景颜色

<html>

 <head>

  <title> new document </title>  

  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>   

  <script type="text/javascript"> 

  

      window.onload = function(){

                  

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

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

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

        {

            change(t[i]);

        }  

}

     function change(obj)

        {

            obj.onmouseover=function()

            {

                ob.style.backgroundColor="#000000";

            }

            obj.onmouseout=function()

            {

                ob.style.backgroundColor="#fff";

            }

        }

        

      // 编写一个函数,供添加按钮调用,动态在表格的最后一行添加子节点;

     

   

     

     // 创建删除函数

     



  </script> 


正在回答

1 回答

知道了,自己粗心

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

举报

0/150
提交
取消

为什么行不随着鼠标的移动而改变背景颜色

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