案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function delCell()
5
  {
6
  document.getElementById('tr2').deleteCell(0)
7
  }
8
</script>
9
</head>
10
<body>
11
12
<table border="1">
13
<tr id="tr1">
14
<th>Firstname</th>
15
<th>Lastname</th>
16
</tr>
17
<tr id="tr2">
18
<td>Peter</td>
19
<td>Griffin</td>
20
</tr>
21
</table>
22
<br />
23
<input type="button" onclick="delCell()" value="Delete cell">
24
25
</body>
26
</html>
27