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 de grupo horizontal usando jQuery Mobile.
Enfoque: 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 de grupo horizontal usando jQuery Mobile. Creamos el botón de radio usando el atributo input type=”radio” y usamos el atributo data-type=”horizontal” para crear un botón de radio de grupo horizontal.
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 Horizontal group Radio Button using jQuery Mobile </h4> <form style="width: 50%;"> <fieldset data-role="controlgroup" data-type="horizontal"> <label for="radioButton">Geeks</label> <input type="radio" name="radioButton" id="radioButton" class="custom" checked> <label for="radioButton1">GFG</label> <input type="radio" name="radioButton" id="radioButton1" class="custom"> <label for="radioButton2">GeeksforGeeks</label> <input type="radio" name="radioButton" id="radioButton2" class="custom"> <label for="radioButton3">Geeks Geeks</label> <input type="radio" name="radioButton" id="radioButton3" class="custom"> </fieldset> </form> </center> </body> </html>
Producción: