La propiedad de resumen de la tabla HTML DOM se utiliza para establecer o devolver el valor del atributo de resumen de un elemento <table>. El atributo resumen se utiliza para definir el resumen de la tabla.
Nota : esta propiedad no es compatible con HTML5
Sintaxis:
- Se utiliza para devolver la propiedad Resumen de tabla.
tableObject.Summary;
- Se utiliza para establecer la propiedad de resumen de la tabla.
tableObject.Summary="text";
Valores de propiedad: contiene el valor único, es decir, texto que especifica el resumen de la tabla.
Ejemplo: El siguiente código HTML ilustra cómo devolver la propiedad de resumen.
HTML
<!DOCTYPE html> <html> <head> <title> Table Summary Property 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>HTML DOM Table summary Property</h2> <table id="GFG" align="center" cellspacing="5" summary="courses@GeeksFprGeeks"> <thead> <tr> <th>Subject</th> <th>Courses</th> </tr> </thead> <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="Table_Caption()"> Return Summary of Table </button> <p id="sudo"></p> <script> function Table_Caption() { var w = document.getElementById("GFG").summary; document.getElementById("sudo").innerHTML = w; } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Ópera
- explorador de Internet
- Firefox
- safari de manzana
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA