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, discutiremos el método jQuery Mobile Popup enable() que habilita el cuadro emergente después de hacer clic en el enlace.
Sintaxis :
$('selector').popup('enable');
Enlace CDN: Primero, agregue los scripts de jQuery Mobile necesarios para su proyecto.
<enlace rel=”hoja de estilo” href=”//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css”>
<script src=”//code.jquery.com/ jquery-1.10.2.min.js”></script>
<script src=”//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script >
Ejemplo: Este ejemplo describe los usos del método jQuery Mobile Popup enable().
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= "//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"> <script src="//code.jquery.com/jquery-1.10.2.min.js"> </script> <script src= "//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> </script> <script> $(document).ready(function () { $("#GFG").popup("enable"); }); </script> </head> <body> <div data-role="page" id="page1"> <div data-role="header"> <h1>GeeksforGeeks</h1> <h3>jQuery Mobile Popup enable() method</h3> </div> <br> <center> <div role="main" class="ui-content"> <a href="#GFG" data-rel="popup"> GeeksforGeeks </a> <div data-role="popup" id="GFG"> <p> A Computer Science portal for geeks. </p> </div> </div> </center> </div> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/popup/#method-enable
Publicación traducida automáticamente
Artículo escrito por bhanusivanagulug y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA