Método jQuery Mobile Filterable refresh()

jQuery UI es una tecnología basada en la web y consta de varios widgets GUI, efectos visuales y temas. Estas funciones se pueden implementar mediante la biblioteca jQuery JavaScript. jQuery UI es la mejor herramienta para crear interfaces de interfaz de usuario para las páginas web. También se puede usar para crear aplicaciones web altamente interactivas o se puede usar para agregar widgets fácilmente.

En este artículo, usaremos el método jQuery Mobile Filterable refresh() para actualizar los elementos filtrables. Activa la recarga de todos los elementos clasificables y permite que se reconozcan nuevos elementos.

Sintaxis:

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

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

Tipo de devolución: este método no devuelve ningún valor de objeto.

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=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”http://code .jquery.com/jquery-1.11.0.min.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min .js”></secuencia de comandos>

Ejemplo: Este ejemplo describe los usos del método jQuery Mobile Filterable refresh() .

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=
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
    <script src=
"http://code.jquery.com/jquery-1.11.0.min.js">
    </script>
    <script src=
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js">
    </script>
          
    <script>
        $(document).ready(function () {
          
            $(".items").filterable({});
            $(".btnclass").bind("click", function () {
                $(".items").filterable("refresh");
                alert("Widget Refreshed");
            });
        });
    </script>
  
</head>
  
<body>
 <center>
        <div data-role="page" id="page1">
            <div>
                <h1 style = "color:green;">GeeksforGeeks</h1>
                <h3>
                    jQuery Mobile Filterable refresh() Method
                </h3>
            </div>
        
            <div role="main" class="ui-content">
                <div >
                    <ul class="items" style="list-style-type:none;">
                        <li>
                            <a href=
"https://www.geeksforgeeks.org/data-structures"
                            target="_blank">
                                Data Structures
                            </a>
                        </li>
                        <li>
                            <a href=
"https://practice.geeksforgeeks.org/courses/complete-interview-preparation"
                            target="_blank">
                                Interview preparation
                            </a>
                        </li>
                        <li>
                            <a href=
"https://www.geeksforgeeks.org/java"
                            target="_blank">
                                Java Programming
                            </a>
                        </li>
                    </ul>
                </div>
            </div>
        
            <input type="button" Value="Refresh" class="btnclass" />
              
            <div id="gfg"></div>
        </div>
    </center>
</body>
  
</html>

Producción:

jQuery Mobile Filterable refresh() Method

Método jQuery Mobile Filterable refresh()

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

Publicación traducida automáticamente

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