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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。