HTML DOM deleteCaption() 方法

定义和用法

deleteCaption() 方法用于删除表格的 caption 元素及其内容。

语法

tableObject.deleteCaption()

说明

如果该表有 <caption> 元素,则从文档树种删除它。否则,什么也不做。

实例

下面的例子删除表格的标题:

<html>
<head>
<script type="text/javascript">
function deleteCaption()
  {
  document.getElementById('myTable').deleteCaption()
  }
</script>
</head>
<body>

<table id="myTable" border="1">
<caption>My table caption</caption>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
</table>
<br />
<input type="button" onclick="deleteCaption()"
value="Delete caption" />

</body>
</html>