js實現表格資訊的刪除和添加

來源:互聯網
上載者:User

標籤:子節點   type   text   點擊事件   nts   charset   學生   asc   seo   

<! 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 tr = document.getElementsByTagName(‘tr‘);      for(var i=0;i< tr.length ;i++){         changeColor(tr[i]);      }    }      function changeColor(obj){          obj.onmouseover = function(){              obj.style.backgroundColor="#f2f2f2";          }            obj.onmouseout = function(){              obj.style.backgroundColor = "#fff";          }      }               // 編寫一個函數,供添加按鈕調用,動態在表格的最後一行添加子節點;      var num = 2;      function add(){          num++;          var tr  = document.createElement(‘tr‘);          var td1 = document.createElement(‘td‘);          var td2 = document.createElement(‘td‘);          var td3 = document.createElement(‘td‘);          td1.innerHTML = ‘xh00‘+num;          td2.innerHTML = ‘第‘+num+"位學生";          td3.innerHTML = "<a href=‘javascript:;‘ onclick=‘del(this)‘>刪除</ a >";          var table = document.getElementById(‘table‘);          table.appendChild(tr);          tr.appendChild(td1);          tr.appendChild(td2);          tr.appendChild(td3);          var tr = document.getElementsByTagName(‘tr‘);          for(var i=0;i< tr.length ;i++)          {           changeColor(tr[i]);          }       }                            // 建立刪除函數       function del(x){       //此處不能寫成remove(x),js中remove()方法用於從下拉式清單刪除選項。           var tr = x.parentNode.parentNode;           tr.parentNode.removeChild(tr);       }    </script>   </ head >   < body >    < center >         < table  border="1" width="50%" id="table" style="text-align:center">         < tr >          < th >學號</ th >          < th >姓名</ th >          < th >操作</ th >         </ tr         < tr >          < td >xh001</ td >          < td >王小明</ td >          < td >< a  href="javascript:;" onclick="del(this)">刪除</ a ></ td >    <!--在刪除按鈕上添加點擊事件  -->         </ tr >         < tr >          < td >xh002</ td >          < td >劉小芳</ td >          < td >< a  href="javascript:;" onclick="del(this)">刪除</ a ></ td >    <!--在刪除按鈕上添加點擊事件  -->         </ tr         </ table >< br >         < input  type="button" value="添加一行" onclick="add()" />       <!--在添加按鈕上添加點擊事件  -->     </ center >   </ body > </ html >

js實現表格資訊的刪除和添加

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.