jQuery Mobile es una tecnología basada en la web que se puede usar para crear contenido receptivo para sitios web a los que se puede acceder en todo tipo de teléfonos inteligentes, tabletas y computadoras de escritorio.
En este artículo, aprenderemos a usar la opción class.cellLabels de jQuery Mobile Reflow Table. Con esta opción, las clases se pueden agregar a la primera celda dentro de la columna de cada encabezado agrupado
Sintaxis:
<div class="ui-panel-content-wrap-closed"> // content </div>
Parámetro: Esta opción no acepta ningún parámetro/argumento.
Tipo de devolución: esta opción no devuelve ningún valor.
Enlace CDN: a continuación se muestran algunos scripts de jQuery Mobile que se necesitarán para su proyecto, así que agréguelos a su proyecto.
<enlace rel=”hoja de estilo” href=”//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css” />
<script src= ”//code.jquery.com/jquery-3.2.1.min.js”></script>
<script src=”//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile -1.5.0-alpha.1.min.js”></secuencia de comandos>
Ejemplo: Este ejemplo describe la opción Classes.cellLabels de la tabla de reflujo de jQuery Mobile.
HTML
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href= "//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css"> <script src= "//code.jquery.com/jquery-3.2.1.min.js"> </script> <script src= "//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"> </script> </head> <body> <center> <div data-role="page"> <h1 style="color:green;"> GeeksforGeeks </h1> <h3>jQuery Mobile Reflow Table classes.cellLabels Option</h3> <div id="log"></div> <div data-role="header"> </div> <div role="main"> <table data-role="table" id="GFG" data-mode="reflow"> <thead> <tr> <th data-priority="1"> Company Name </th> <th data-priority="persist"> Website </th> <th data-priority="2"> Year </th> </tr> </thead> <tbody> <tr> <th>GeeksforGeeks</th> <td> <a href="https://www.geeksforgeeks.org/" data-rel="external"> WWW.GeeksforGeeks.org </a> </td> <td>2010</td> </tr> </tbody> </table> </div> <div id="log"> <h3> classes.cellLabels </h3> <h4> Default: "ui-table-cell-label" </h4> </div> </div> </center> <script> $(document).ready(function () { $("#GFG").table({}); }); </script> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/table-reflow/#option-classes.cellLabels
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA