[html]代码库
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<table border="1">
<tr>
<td>dd</td>
<td>
<input type="button" onclick="del(this)" />
</td>
</tr>
<tr>
<td>dd</td>
<td>
<input type="button" onclick="del(this)" />
</td>
</tr>
<tr>
<td>dd</td>
<td>
<input type="button" onclick="del(this)" />
</td>
</tr>
</table>
<script type="text/javascript">
function del(obj){
//alert("d");
obj.parentNode.parentNode.parentNode.removeChild(obj.parentNode.parentNode);
}
</script>
</body>
</html>
by: 发表于:2017-12-19 09:43:27 顶(0) | 踩(0) 回复
??
回复评论