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, usaremos el método jQuery Mobile Textinput destroy() para eliminar completamente la funcionalidad de entrada de texto del widget. Este método no acepta ningún parámetro y devuelve el elemento a su estado anterior a la inicialización.
Sintaxis:
$(".selector").textinput( "destroy" );
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 los usos del método jQuery Mobile Textinput destroy().
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> <script> $(function () { $("#btn").on('click', function () { $("#GFG").textinput("destroy"); }); }); </script> </head> <body> <center> <div data-role="page" id="page1"> <div data-role="header"> <h1>GeeksforGeeks</h1> <h3> jQuery Mobile Textinput destroy() Method </h3> </div> <div role="main" class="ui-content"> <label for="GFG">Text Input:</label> <input type="text" name="name" id="GFG" placeholder="GeeksforGeeks"> </div> <input type="button" id="btn" style="width: 250px;" value="Destroy the Widget"> </div> </center> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/textinput/#method-destroy
Publicación traducida automáticamente
Artículo escrito por AshokJaiswal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA