当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Table caption用法及代码示例


表标题属性返回表的<caption>元素,该元素用于定义表的标题。只能将一个标题分配给一个表,并且在<caption>元素内输入的标题默认为居中对齐。

用法

tableObject.caption

以下示例程序旨在说明表caption()属性:
例:提示标题元素内的文本。


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Table caption Property in HTML 
  </title> 
    <style> 
        table, 
        td { 
            border:1px solid green; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Table caption Property</h2> 
  
    <p>To return the caption element 
      for the table, double-click the 
      "Return Caption" button.</p> 
  
    <table id="Courses" align="center"> 
        <caption>Courses by Geeksforgeeks 
      </caption> 
        <thead> 
            <tr> 
                <th>Subject</th> 
                <th>Courses</th> 
            </tr> 
        </thead> 
        <tr> 
            <td>Java</td> 
            <td>Fork Java</td> 
        </tr> 
        <tr> 
            <td>Python</td> 
            <td>Fork Python</td> 
        </tr> 
        <tr> 
            <td>Placements</td> 
            <td>Sudo Placement</td> 
        </tr> 
    </table> 
    <br> 
  
    <button ondblclick="Table_Caption()"> 
      Return Caption 
  </button> 
  
    <script> 
        function Table_Caption() { 
            
            // Return caption using alert. 
            alert(document.getElementById( 
              "Courses").caption.innerHTML); 
        } 
    </script> 
  
</body> 
  
</html>

输出:

在单击按钮之前:

单击按钮后:

支持的浏览器:

  • 苹果Safari
  • IE浏览器
  • Firefox
  • 谷歌浏览器
  • Opera


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM Table caption Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。