jQuery Mobile es una tecnología web utilizada para crear sitios web y aplicaciones web sensibles y accesibles. Está construido sobre jQuery .
En este artículo, usaremos el método jQuery Mobile Popup open() para abrir la ventana emergente usando las opciones especificadas.
Sintaxis:
$( ".selector" ).popup( "open", options );
Aquí el parámetro de opciones es de tipo objeto que acepta 4 claves:
- x: la coordenada x en la que desea mostrar la ventana emergente.
- y: La coordenada y donde desea mostrar la ventana emergente.
- transición: Define qué transición usar al abrir la ventana emergente. Acepta una string y el valor predeterminado es una string vacía.
- positionTo: se puede usar un jQuery Selector para definir la posición en la que se mostrará la ventana emergente.
Enlaces CDN: Primero, agregue enlaces jQuery CDN al proyecto.
<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, usamos la opción positionTo para definir dónde queremos abrir la ventana emergente.
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"} ); } </script> </head> <body> <div data-role="page"> <center> <h2 style="color: green">GeeksforGeeks</h2> <h3>jQuery Mobile Popup open Method</h3> <p id="target">Popup will open here</p> <div data-role="popup" id="popup1"> <p>Welcome to GeeksforGeeks</p> </div> <button onclick="openPopup()"> Open Popup </button> </center> </div> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/popup/#method-open