HTML | DOM ColumnGroup span Propiedad

La propiedad span de ColumnGroup en HTML DOM se usa para establecer o devolver el valor del atributo span de un elemento colgroup. El atributo span se utiliza para definir el número de columnas que debe abarcar un elemento <colgroup>.

Sintaxis:

  • Devuelve la propiedad de intervalo ColumnGroup.
    columngroupObject.span
  • Se utiliza para establecer la propiedad de intervalo ColumnGroup.
    columngroupObject.span = number

Valores de propiedad: contiene un número de valor único que especifica el número de <colgroup> que debe abarcar.

Valor devuelto: Devuelve un valor numérico que representa el número de columnas.

Ejemplo 1: este ejemplo devuelve la propiedad span.

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM ColumnGroup span property 
    </title> 
  
    <style> 
        #myColGroup { 
            background: green; 
        } 
        table { 
            color: white; 
            margin-left: 180px; 
            background: yellow; 
        } 
        #Geek_p { 
            color: green; 
            font-size: 30px; 
        } 
        td { 
            padding: 10px; 
        } 
    </style> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;"> 
            GeeksForGeeks 
        </h1> 
  
    <h2>HTML | DOM ColumnGroup span Property</h2>
      
    <table> 
        <colgroup id="myColGroup" span="2"></colgroup> 
        <tr> 
            <th>S.No</th> 
            <th>Title</th> 
            <th>Geek_id</th> 
        </tr> 
        <tr> 
            <td>Geek_1</td> 
            <td>GeekForGeeks</td> 
            <th>Geek_id_1</th> 
        </tr> 
        <tr> 
            <td>Geek_2</td> 
            <td>GeeksForGeeks</td> 
            <th>Geek_id_2</th> 
        </tr> 
    </table> 
    <br> 
      
    <button onclick="myGeeks()"> 
        Click 
    </button> 
      
    <h4> 
        <p id="Geek_p" style="color:green"></p> 
    </h4> 
      
    <!-- Script to use ColumnGroup span Property -->
    <script> 
        function myGeeks() { 
            var x = document.getElementById("myColGroup").span; 
            document.getElementById("Geek_p").innerHTML = x; 
        } 
    </script> 
</body> 
  
</html>                    

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

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

Ejemplo 2: este ejemplo establece la propiedad span.

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | DOM ColumnGroup span property 
    </title> 
  
    <style> 
        #myColGroup { 
            background: green; 
        } 
        table { 
            color: white; 
            margin-left: 180px; 
            background: yellow; 
        } 
        #Geek_p { 
            color: green; 
            font-size: 30px; 
        } 
        td { 
            padding: 10px; 
        } 
    </style> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;"> 
            GeeksForGeeks 
        </h1> 
  
    <h2>HTML | DOM ColumnGroup span Property</h2> 
      
    <table> 
        <colgroup id="myColGroup" span="2"> 
        </colgroup> 
        <tr> 
            <th>S.No</th> 
            <th>Title</th> 
            <th>Geek_id</th> 
        </tr> 
        <tr> 
            <td>Geek_1</td> 
            <td>GeekForGeeks</td> 
            <th>Geek_id_1</th> 
        </tr> 
        <tr> 
            <td>Geek_2</td> 
            <td>GeeksForGeeks</td> 
            <th>Geek_id_2</th> 
        </tr> 
    </table> 
    <br> 
    <button onclick="myGeeks()"> 
        Click 
    </button>
      
    <h4> 
        <p id="Geek_p" style="color:green"></p> 
    </h4> 
      
    <!-- Script to use DOM ColumnGroup span Property -->
    <script> 
        function myGeeks() { 
            var x = document.getElementById("myColGroup").span
                    = "4"; 
            document.getElementById("Geek_p").innerHTML
                    = "The value of the span attribute was"
                    + " changed to " + x; 
        } 
    </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 Colgroup span property 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 *