jQuery Mobile es una tecnología basada en la web que se utiliza para crear contenido receptivo al que se puede acceder en todos los teléfonos inteligentes, tabletas y computadoras de escritorio.
En este artículo, utilizaremos la opción initSelector de jQuery Mobile Reflow Table . El valor de esta opción es una string selectora de CSS que selecciona elementos en función del valor de esta opción y explica los widgets de tabla de reflujo indicados en cada elemento de la siguiente lista.
Sintaxis:
- Inicializar la tabla de reflujo con la opción initSelector .
$( ".selector" ).table({ initSelector: ".mytable" });
- Configuración de la opción initSelector .
$( ".selector" ).table( "option", "initSelector", ".mytable" );
- Obtener la opción initSelector .
var initSelector = $( ".selector" ) .table( "option", "initSelector" );
Enlace CDN: Primero, agregue los scripts de jQuery Mobile necesarios para 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 initSelector de jQuery Mobile Reflow Table .
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 initSelector Option</h3> <div data-role="header"> </div> <div role="main"> <table data-role="table" id="tableID" 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> <input type="button" id="Button" value="Value of the initSelector Option"> <div id="log"></div> </div> </center> <script> $(document).ready(function () { $("#tableID").table({ initSelector: ".mytable" }); $("#tableID").table("option", "initSelector", ".mytable"); $("#Button").on('click', function () { var a = $("#tableID").table("option", "initSelector"); $("#log").html(a); }); }); </script> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/table-reflow/#option-initSelector
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA