HTML DOM deleteCaption() 方法

定义和用法

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

语法

  1. tableObject.deleteCaption()

说明

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

实例

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

  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>My table 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()"
  25. value="Delete caption" />
  26.  
  27. </body>
  28. </html>