jQuery Mobile es un conjunto de herramientas de widgets de interacción del sistema de usuario basado en HTML5 que se utiliza para crear sitios web y aplicaciones web receptivos. Está construido sobre jQuery .
En este artículo, utilizaremos el método jQuery Mobile Popup close() para cerrar una ventana emergente ya abierta. Este método no acepta ningún parámetro.
Sintaxis:
$( ".selector" ).popup( "close" );
Enlaces CDN:
<enlace rel=”hoja de estilo” href=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”https://code .jquery.com/jquery-2.1.3.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js”> </script>
Ejemplo:
En el siguiente ejemplo, usaremos el método Popup close() para cerrar la ventana emergente abierta después de 3000 ms. Hemos utilizado el método JavaScript setTimeout() para esperar 3000ms.
HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Popup - reposition method</title> <link rel="stylesheet" href= "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"/> <script src= "https://code.jquery.com/jquery-2.1.3.js"> </script> <script src= "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js"> </script> <script> function openPopup(){ $( "#popup1" ).popup( "open", {positionTo: "#target"} ); setTimeout(() => { // Invoke the close() method after 3seconds $( "#popup1" ).popup( "close"); }, 3000); } </script> </head> <body> <div data-role="page"> <center> <h2 style="color: green">GeeksforGeeks</h2> <h3>jQuery Mobile Popup close Method</h3> <p id="target"> Popup will open here and will close after 3 seconds </p> <div data-role="popup" id="popup1"> <p>Welcome to GeeksforGeeks</p> </div> <button style="width: 350px;" onclick="openPopup()"> Open Popup </button> </center> </div> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/popup/#method-close