问答详情
源自:9-22 编程练习

前两个删除问题

为什么其它没问题,就前两个删除不行,没反应

提问者:慕后端4227358 2018-10-19 20:26

个回答

  • acoderdohiswork
    2018-12-13 14:44:48

    解决了吗?我也是前两个不能删

  • acoderdohiswork
    2018-12-13 14:43:43

    解决了,我也是前面个不能删

  • 慕后端4227358
    2018-10-19 20:27:19

    <!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(){

            Hl();  

              

          }        

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

         function Hl(){

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

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

         tr[i].onmouseover = function(){

            this.style.backgroundColor="#f2f2f2";

    }

    tr[i].onmouseout = function(){

         this.style.backgroundColor="#fff";

    }

    }

         }

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

        function addb(){

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

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

            table.appendChild(new_tr);

            for(var i=0;i<2;i++){

                var new_td = document.createElement("td");

                new_tr.appendChild(new_td);

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

            }

            var new_td = document.createElement("td");

                new_tr.appendChild(new_td);

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

        Hl(); 

        }

       

         

         // 创建删除函数

         function deleteRow(obj){

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

            table.removeChild(obj.parentNode.parentNode);

            Hl(); 

         }

         

      </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="deleteRow()">删除</a>

        </td>   <!--在删除按钮上添加点击事件  -->

       </tr>

       <tr>

    <td>xh002</td>

    <td>刘小芳</td>

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

       </tr>  

       </table>

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

     </body>

    </html>