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

鼠标移动到行上背景颜色没有变化,求大神解答

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript"> 

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

      window.onload = function(){

          Highlight();

        }

  function Highlight(){

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

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

     tr[i].onmouseover=function(){

     tr[i].style.backgroundColor="#f2f2f2";

      }

     tr[i].onmouseout=function(){

     tr[i].style.backgroundColor="#fff";

      }   

       }

       }


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

      function addOne(){

var tbody=document.getElementById("table");

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

var td=document.createElement("td")

                 td.innerHTML="<input type='text'/>";

                 tr.appendChild(td); 

 td=document.createElement("td")

                  td.innerHTML="<input type='text'/>";

                  tr.appendChild(td);

 td=document.createElement("td")

                 td.innerHTML="<a href='javascript:;'onclick='deletetr(this)'>删除</a>";

                 tr.appendChild(td);

                 tbody.appendChild(tr);

          Highlight();

                   }      

     // 创建删除函数

     function deletetr(obj){

     var tr=obj.parentNode.parentNode;

tr.parentNode.removeChild(tr);

}

  </script> 

 </head> 

 <body> 

  <table border="1" width="50%" id="table">

  <tr>

<th>学号</th>

<th>姓名</th>

<th>操作</th>

  </tr>  


  <tr>

<td>xh001</td>

<td>王小明</td>

<td><a href="javascript:"onclick="deletetr(this)"";" >删除</a></td>   <!--在删除按钮上添加点击事件  -->

  </tr>


  <tr>

<td>xh002</td>

<td>刘小芳</td>

<td><a href="javascript:"onclick="deletetr(this)"";" >删除</a></td>   <!--在删除按钮上添加点击事件  -->

  </tr>  


  </table>

  <input type="button" value="添加一行" onclick="addOne()" />   <!--在添加按钮上添加点击事件  -->

 </body>

</html>


正在回答

1 回答

function Highlight(){


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


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


     tr[i].onmouseover=function(){


     this.style.backgroundColor="#f2f2f2";


      }


     tr[i].onmouseout=function(){


     this.style.backgroundColor="#fff";


      }   


       }


       }

这是我改好的函数,你之前的函数有几个地方错了

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

举报

0/150
提交
取消

鼠标移动到行上背景颜色没有变化,求大神解答

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