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, crearemos un botón de radio deshabilitado usando jQuery Mobile.
Acercarse:
- Agregue los scripts jQuery Mobile necesarios para su proyecto.
<enlace rel=”hoja de estilo” href=”http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”http://code.jquery.com/jquery-1.11.1.min.js”></script>
<script src=”http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>
Ejemplo: Crearemos un botón de radio deshabilitado usando jQuery Mobile. Creamos el botón de opción usando el atributo input type=”radio” y usamos disabled=”disabled” para deshabilitar el botón de opción.
HTML
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href= "http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> <script src="http://code.jquery.com/jquery-1.11.1.min.js"> </script> <script src= "http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> </script> </head> <body> <center> <h1>GeeksforGeeks</h1> <h4> Design a Disabled Radio Button using jQuery Mobile </h4> <form style="width: 50%;"> <fieldset data-role="controlgroup" data-iconpos="right"> <label for="radioButton"> Theme Disabled Radio Button </label> <input type="radio" name="radioButton" id="radioButton" class="custom" data-theme="b" disabled="disabled"> <label for="radioButton1"> Theme Not Disabled Radio Button </label> <input type="radio" name="radioButton" id="radioButton1" data-theme="b" class="custom"> <label for="radioButton2"> Disabled Radio Button </label> <input type="radio" name="radioButton" id="radioButton2" class="custom" disabled="disabled"> <label for="radioButton3"> Not Disabled Radio Button </label> <input type="radio" name="radioButton" id="radioButton3" class="custom"> </fieldset> </form> </center> </body> </html>
Output: