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 posición de icono 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 posición de icono usando jQuery Mobile. Creamos el botón de opción usando el atributo input type=”radio” y usamos el atributo data-iconpos=”right” para posicionar el icono del 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 Icon position Radio Button using jQuery Mobile </h4> <form style="width: 50%;"> <fieldset data-role="controlgroup" data-iconpos="right"> <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: