HTML | Objeto de título DOM – Part 1

El objeto de título DOM se usa para representar el elemento HTML <Caption> (un elemento de título se usa para especificar el título de una tabla). Se accede al elemento Caption mediante getElementById().
Propiedades: 
 

  • Tiene un atributo de alineación que se usa para establecer o devolver la alineación del título.

Sintaxis: 
 

document.getElementById("id"); 

Donde “id” es el ID asignado a la etiqueta de título .
Ejemplo 1: 
 

html

<!DOCTYPE html>
<html>
 
<head>
    <style>
        table,
        th,
        td {
            border: 1px solid black;
        }
    </style>
</head>
 
<body>
    <h1 style="color:green;font-size:35px;">
      GeeksForGeeks
    </h1>
    <h2>DOM Caption Object</h2>
   
    <table>
        <caption id="GFG">Students</caption>
        <tr>
            <th>Firstname</th>
            <th>Lastname</th>
            <th>Age</th>
        </tr>
        <tr>
            <td>Priya</td>
            <td>Sharma</td>
            <td>24</td>
        </tr>
        <tr>
            <td>Arun</td>
            <td>Singh</td>
            <td>32</td>
        </tr>
        <tr>
            <td>Sam</td>
            <td>Watson</td>
            <td>41</td>
        </tr>
    </table>
    <br>
    <button onclick="myGeeks()">Submit</button>
 
    <script>
        function myGeeks() {
            var w = document.getElementById("GFG");
            w.style.color = "green";
            w.style.fontSize = "28px";
        }
    </script>
 
</body>
 
</html>

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

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

Ejemplo-2: el objeto Caption se puede crear utilizando el método  document.createElement .
 

html

<!DOCTYPE html>
<html>
 
<head>
    <style>
        table,
        th,
        td {
            border: 2px soliD green;
        }
    </style>
</head>
 
<body>
    <h1 style="color:green;font-size:35px;">
      GeeksForGeeks
    </h1>
    <h2>DOM Caption Object</h2>
   
    <table id="GFG">
        <tr>
            <th>Firstname</th>
            <th>Lastname</th>
            <th>Age</th>
        </tr>
        <tr>
            <td>Priya</td>
            <td>Sharma</td>
            <td>24</td>
        </tr>
        <tr>
            <td>Arun</td>
            <td>Singh</td>
            <td>32</td>
        </tr>
        <tr>
            <td>Sam</td>
            <td>Watson</td>
            <td>41</td>
        </tr>
    </table>
    <br>
   
    <button onclick="myGeeks()">
      Submit
    </button>
 
    <script>
        function myGeeks() {
            var cap = document.createElement("CAPTION");
            var txt = document.createTextNode("Students");
            cap.appendChild(txt);
            cap.style.color = "red";
            cap.style.fontSize = "29px";
 
            var tab = document.getElementById("GFG")
            tab.insertBefore(cap, tab.childNodes[0]);
        }
    </script>
 
</body>
 
</html>

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

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

Navegadores compatibles: los navegadores compatibles con DOM Caption Object se enumeran a continuación: 
 

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Ópera
  • Safari

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 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 *