Método jQuery Mobile Reflow refresh()

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 el método refresh() de la tabla de reflujo de jQuery Mobile para actualizar las etiquetas en las celdas del widget de tabla de reflujo especificado.

Sintaxis:  

$( ".selector" ).table( "refresh" );

Parámetros: este método no acepta ningún parámetro.

Valores devueltos: este método no devuelve ningún valor.

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 el método refresh() 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 refresh() Method</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>
            <input type="button" id="Button" value="Refresh the widget">
        </div>
    </center>
    <script>
        $(document).ready(function () {
            $("#Button").on('click', function () {
                $("#GFG").table("refresh");
                $("#log").html('The Reflow Table widget has been refreshed.');
            });
        });
    </script>
</body>
  
</html>

Producción:

jQuery Mobile Reflow refresh() Method

Referencia: https://api.jquerymobile.com/table-reflow/#method-refresh

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray 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 *