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