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, usaremos la opción de historial del widget emergente de jQuery Mobile para establecer si se modifica la URL cuando se abre una ventana emergente para admitir el botón Atrás.
Sintaxis:
$("selector").popup({ history: false });
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:
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({ arrow: "t", history: false }); }); </script> </head> <body> <div data-role="page" id="page1"> <div data-role="header"> <h1>GeeksforGeeks</h1> <h3>jQuery Mobile Popup Widget history Option</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/#option-history