HTML | Método createCaption() de la tabla DOM

El método Table createCaption() se usa en una tabla para crear <caption> que está vacío. No funciona si ya hay un elemento <caption> . En tal caso, el método createCaption() devuelve el existente.
Sintaxis 
 

tableObject.createCaption()

Valor de retorno: el elemento <caption> recién creado (o existente)

El siguiente programa ilustra el método Table createCaption(): 
Ejemplo-1: Creación de un elemento <caption>. 
 

html

<!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>

Salida:
Antes de hacer clic en el botón: 
 

Después de hacer clic en el botón: 
 

Navegadores compatibles: 
 

  • safari de manzana
  • explorador de Internet
  • Firefox
  • Google Chrome
  • Ópera

Publicación traducida automáticamente

Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *