添加的不能删除什么鬼?
<!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(){
//鼠标移动改变背景,可以通过给每行绑定鼠标移上事件和鼠标移除事件来改变所在行背景色。
var tr_arr = document.getElementsByTagName("tr");
for(i=0;i<tr_arr.length;i++){
//tr_arr[i].onmouseover=function(){this.style.backgroundColor='red';}
//tr_arr[i].onmouseout=function(){this.style.backgroundColor='white';}
tr_arr[i].setAttribute("onmouseover","this.style.backgroundColor='red'");
tr_arr[i].setAttribute("onmouseout","this.style.backgroundColor='white'");
}
}
// 编写一个函数,供添加按钮调用,动态在表格的最后一行添加子节点;
function appendNoed(){
var tabNode = document.getElementById("table");
var trNode = document.createElement("tr");
var appA = document.createElement("a");
for(i=1;i<=3;i++){
//alert("循环"+i+"次");
trNode.appendChild(document.createElement("td"));
if(i==3){
trNode.lastChild.appendChild(appA);
var a= trNode.lastChild.firstChild;
a.innerHTML="删除";
a.onClick="del(this)";
a.href="javascript:;";
}
}
tabNode.appendChild(trNode);
}
// 创建删除函数
function del(x){
alert(x.id);
var trNode = x.parentNode.parentNode;
var tabNode = x.parentNode.parentNode.parentNode;
tabNode.removeChild(trNode);
}
</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="del(this)">删除</a></td> <!--在删除按钮上添加点击事件 -->
</tr>
<tr>
<td>xh002</td>
<td>刘小芳</td>
<td><a href="javascript:;" onClick="del(this)">删除</a></td> <!--在删除按钮上添加点击事件 -->
</tr>
</table>
<input type="button" value="添加一行" onClick="appendNoed()" /> <!--在添加按钮上添加点击事件 -->
</body>
</html>