當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。