<!DOCTYPE html><html>?<head>? <title> new document </title> ?? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> ??? <script type="text/javascript">??// 鼠標(biāo)移動(dòng)改變背景,可以通過給每行綁定鼠標(biāo)移上事件和鼠標(biāo)移除事件來改變所在行背景色。? ? window.onload = function(){? ? ? ? var hang = document.getElementsByTagName("tr"); ? ?for(var i=1; i<hang.length; i++){ ? ? ? ?hang[i].onmouseover = function(){ ? ? ? ? ? ?this.style.backgroundColor = "#f2f2f2"; ? ? ? ?} ? ? ? ?hang[i].onmouseout = function(){ ? ? ? ? ? ?this.style.backgroundColor = "#fff"; ? ? ? ?} ? ?} }? ? ?? ? ? // 編寫一個(gè)函數(shù),供添加按鈕調(diào)用,動(dòng)態(tài)在表格的最后一行添加子節(jié)點(diǎn);? ? ?function tianjia(){? ? ? var tr = document.createElement("tr");? ? ? for(var i=0; i<3; i++){? ? ? var td = document.createElement("td");? ? ? td.innerHTML = "<input type = 'text'/>"? ? ? // td.setAttribute("height","50px");? ? ? tr.appendChild(td);? ? ? }? ? ? var tab = document.getElementById("table");? ? ? tab.appendChild(tr);? ? ?}? ? ?// 創(chuàng)建刪除函數(shù)? ? function shanchu(obj){ ? ?var main1 = document.getElementById("table").lastChild ? ?;//為什么要加上一個(gè)lastChild才可以刪除?這樣豈不是main1代表最后一個(gè)tr標(biāo)簽?但是去掉就不可以點(diǎn)擊刪除了。 ? ?main1.removeChild(obj.parentNode.parentNode);? ? }? </script>??</head>??<body>? ? <table border="1" width="50%" id="table"> ? <tr> <th>學(xué)號(hào)</th> <th>姓名</th> <th>操作</th> ? </tr> ? ? <tr> <td>xh001</td> <td>王小明</td> <td><a href="#" onclick = "shanchu(this);">刪除</a></td> ? <!--在刪除按鈕上添加點(diǎn)擊事件 ?--> ? </tr> ? <tr> <td>xh002</td> <td>劉小芳</td> <td><a href="javascript:" onclick = "shanchu(this);">刪除</a></td> ? <!--在刪除按鈕上添加點(diǎn)擊事件 ?--> ? </tr> ? ? </table> ? <input type="button" value="添加一行" onclick="tianjia()" /> ? <!--在添加按鈕上添加點(diǎn)擊事件 ?-->?</body></html>
關(guān)于js課程最后一章刪除表格的練習(xí)。問題在備注中,最后一個(gè)函數(shù)我迷了,求大神幫助
白平衡
2016-11-10 16:05:25