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, haremos un botón agrupado horizontal del elemento Formulario temático usando jQuery Mobile.
Enfoque: Primero, 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”></secuencia de comandos>
Ejemplo 1:
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> Themed Form element Horizontal grouped button using jQuery Mobile </h4> </center> <div data-role="controlgroup" data-type="horizontal" data-theme="b"> <button id="gfg" data-role="button" data-icon="plus">plus </button> <button id="gfg" data-role="button" data-icon="minus">minus </button> <button id="gfg" data-role="button" data-icon="star">star </button> </div> </body> </html>
Producción:
Ejemplo 2:
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> Themed Form element Horizontal grouped button using jQuery Mobile </h4> </center> <div data-role="controlgroup" data-type="horizontal" data-theme="b"> <a href="https://www.geeksforgeeks.org/" data-role="button" data-icon="plus"> plus </a> <a href="https://www.geeksforgeeks.org/" data-role="button" data-icon="minus"> minus </a> <a href="https://www.geeksforgeeks.org/" data-role="button" data-icon="star"> star </a> </div> </body> </html>
Producción: