jQuery Mobile es una biblioteca de JavaScript que se utiliza para desarrollar sitios web y aplicaciones web receptivas. Está construido sobre jQuery. En este artículo, utilizaremos el método panel open() de jQuery Mobile para abrir un panel. El panel open() no acepta ningún argumento.
Sintaxis:
$(".selector").panel( "open" );
Parámetros: este método no acepta ningún argumento.
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: El siguiente ejemplo muestra cómo abrir un panel usando el método open() .
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= "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 openPanel(){ // Invoke the open method of panel $("#divID").panel("open"); } </script> </head> <body> <div data-role="page"> <div data-role="header" > <h1 style="color:green;">GeeksforGeeks</h1> <h3>jQuery Mobile Panel open method</h3> </div> <div role="main" class="ui-content"> <center> <button onclick="openPanel();" style="width:400px;"> Open Panel </button> </center> </div>> <div data-role="panel" id="divID"> <h3>GeeksforGeeks</h3> <p>This is a panel</p> </div> </div> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/panel/#method-open