jQuery Mobile es una tecnología web que se utiliza para crear aplicaciones y sitios web receptivos a los que se puede acceder desde teléfonos inteligentes, tabletas y dispositivos de escritorio. En este artículo, usaremos el método jQuery Mobile Flipswitch disabled() para deshabilitar el widget habilitado para flip switch. Este método no acepta ningún parámetro.
Sintaxis:
$(".selector").flipswitch("disable");
Parámetros: Este método no acepta ningún parámetro.
Vínculos CDN: Primero, agregue los scripts de jQuery Mobile necesarios para 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=”https://code .jquery.com/jquery-2.1.3.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js”> </script>
Ejemplo: Este ejemplo describe el método jQuery Mobile Flipswitch disabled() .
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.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css"> <script src= "https://code.jquery.com/jquery-3.2.1.min.js"> </script> <script src= "https://code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"> </script> <script> $(document).ready(function() { $("#btn").on('click', function() { $("#GFG").flipswitch("disable"); }) }); </script> </head> <body> <center> <div data-role="page"> <div data-role="header"> <h1>GeeksforGeeks</h1> <h3>jQuery Mobile Flipswitch disable() Method</h3> </div> <div class="ui-field-contain"> <form> <div data-role="fieldcontain"> <label for="GFG"> Flipswitch Checkbox: </label> <input type="checkbox" id="GFG" data-role="flipswitch"> </div> </form> </div> <input type="button" id="btn" style="width: 250px;" value="Disable the Widget"> </div> </center> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/flipswitch/#method-disable