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


HTML Table tFoot用法及代碼示例


Table tFoot屬性用於返回對表的<tfoot>元素的引用。 <tfoot>元素用於對HTML表中的頁腳內容進行分組。如果未定義<tfoot>元素,則返回NULL。

用法

tableObject.tFoot

以下示例程序旨在說明表TFoot()屬性:
例:提醒innerHTML <tfoot>元素。


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Table tFoot 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 tFoot Property</h2> 
  
    <p>To return the innerHTML of the tfoot  
      element for the table, double-click the 
      "Return Footer" button.</p> 
  
    <table id="Courses" align="center"> 
        <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> 
        <tfoot> 
            <tr> 
                <td>Sample</td> 
                <td>Footer</td> 
            </tr> 
        </tfoot> 
  
    </table> 
    <br> 
  
    <button ondblclick="tfoot()"> 
      Return Footer 
  </button> 
  
    <script> 
        function tfoot() { 
            
            // returning reference of tFoot 
            // using alert 
            alert(document.getElementById( 
              "Courses").tFoot.innerHTML); 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:

  • 蘋果Safari
  • IE瀏覽器
  • Firefox
  • 穀歌瀏覽器
  • Opera


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Table tFoot Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。