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


HTML DOM Table createCaption()用法及代碼示例


表createCaption()方法在表中用於創建為空的<caption>。如果已經有<caption>元素,則此操作無效。在這種情況下,createCaption()方法將返回現有的方法。

用法

tableObject.createCaption()

以下示例程序旨在說明表createCaption()方法:
示例1:創建一個<caption>元素。


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Table createCaption()  
      Method 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 createCaption() Method</h2> 
  
    <p>To create a Caption for the table,  
      double-click the "Add Caption" button. 
  </p> 
  
    <table id="Courses" 
           align="center"> 
        <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="Add_Caption()"> 
      Add Caption 
  </button> 
  
    <script> 
        function Add_Caption() { 
            
           // Creating caption. 
           var MyTable =  
            document.getElementById( 
              "Courses").createCaption(); 
              
          // Caption value. 
          MyTable.innerHTML =  
              "<strong>GeeksforGeeks</strong>"; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:

  • 蘋果Safari
  • IE瀏覽器
  • 火狐瀏覽器
  • 穀歌瀏覽器
  • Opera


相關用法


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