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

简单实现!

简单实现!_

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript"> 

      window.onload = function(){

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

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

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

                 rows[i].style.backgroundColor="#ccc";

                 rows[i].setAttribute("onmouseover","this.style.backgroundColor='red'");

                 rows[i].setAttribute("onmouseout","this.style.backgroundColor='#ccc'");

          }

     

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

     function addRow(){

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

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

        tr.style.backgroundColor="#ccc";

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

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

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

         td1.innerHTML="xh00x";

         td2.innerHTML="张某";

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

         a.innerHTML="删除";

         a.href="#";

         a.setAttribute("onclick","deleteRow(this)");

         td3.appendChild(a);

         tr.appendChild(td1);

         tr.appendChild(td2); 

         tr.appendChild(td3);

         tr.setAttribute("onmouseover","this.style.backgroundColor='red'");

         tr.setAttribute("onmouseout","this.style.backgroundColor='#ccc'");

         table.appendChild(tr);

     }

   

     

     // 创建删除函数

     function deleteRow(obj){

         obj.parentNode.parentNode.parentNode.removeChild(obj.parentNode.parentNode);

     }  



  </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="#" onclick="deleteRow(this)" >删除</a></td>   <!--在删除按钮上添加点击事件  -->

   </tr>


   <tr>

<td>xh002</td> 

<td>刘小芳</td>

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

   </tr>  

  

   </table>

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

 </body>  

</html>


正在回答

举报

0/150
提交
取消
JavaScript进阶篇
  • 参与学习       468044    人
  • 解答问题       21891    个

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

进入课程

简单实现!

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