La propiedad DOM TableData rowSpan en HTML DOM se usa para establecer o devolver el valor del atributo rowspan . El atributo rowspan en HTML especifica el número de filas que debe abarcar una celda.
Sintaxis:
- Devuelve la propiedad rowSpan.
tabledataObject.rowSpan
- Se utiliza para establecer la propiedad rowSpan.
tabledataObject.rowSpan = number
Valores de propiedad: contiene el valor, es decir, el número que especifica el número de filas que debe abarcar una celda.
Valores devueltos: Devuelve un valor numérico que representa el número de filas que debe abarcar una celda.
Ejemplo-1: este ejemplo devuelve una propiedad de rango de filas.
html
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid green; } </style> </head> <body> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM TableData rowSpan Property </h2> <table> <tr> <td id="myTd" rowspan="3"> Geeks </td> <td>For</td> <td>Geeks</td> </tr> </table> <br> <button onclick="myFunction()"> Click Here! </button> <p id="demo" style="font-size:24px; colorgreen;"> </p> <script> function myFunction() { // Accessing Table data var x = document.getElementById( "myTd").rowSpan; document.getElementById( "demo").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 de rango de filas.
html
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid green; } </style> </head> <body> <body> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM TableData rowSpan Property </h2> <table> <tr> <td id="myTd" rowspan="3"> Geeks </td> <td>For</td> <td>Geeks</td> </tr> </table> <br> <button onclick="myFunction()"> Click Here! </button> <p id="demo" style="font-size:24px; colorgreen;"> </p> <script> function myFunction() { // Accessing Table data var x = document.getElementById( "myTd").rowSpan = "2"; document.getElementById("demo").innerHTML = "The value of the rowspan "+ "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:
- Google Chrome
- Mozilla Firefox
- Borde
- Safari
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA