‘opción modal’ si se establece en verdadero deshabilitará los otros elementos en el cuadro de diálogo. De forma predeterminada, el valor es falso.
Sintaxis:
$( ".selector" ).dialog({ modal: false });
Enfoque: Primero, agregue los scripts jQuery UI necesarios para su proyecto.
<enlace href = «https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css» rel = «hoja de estilo»>
<script src = «https://code. jquery.com/jquery-1.10.2.js”></script>
<script src = “https://code.jquery.com/ui/1.10.4/jquery-ui.js”></script>
Ejemplo 1:
HTML
<!doctype html> <html lang = "en"> <head> <meta charset = "utf-8"> <link rel = "stylesheet" href = "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"> <script src = "https://code.jquery.com/jquery-1.10.2.js"> </script> <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"> </script> <script> $(function() { $( "#gfg" ).dialog({ autoOpen: false, modal : true }); $( "#geeks" ).click(function() { $( "#gfg" ).dialog( "open" ); }); }); </script> </head> <body> <div id = "gfg" title = "GeeksforGeeks"> Jquery UI| modal dialog option </div> <button id = "geeks">Open Dialog</button> </body> </html>
Producción:
Ejemplo 2:
HTML
<!doctype html> <html lang = "en"> <head> <meta charset = "utf-8"> <link rel = "stylesheet" href = "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"> <script src = "https://code.jquery.com/jquery-1.10.2.js"> </script> <script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"> </script> <script> $(function() { $( "#gfg" ).dialog({ autoOpen: false, modal : false }); $( "#geeks" ).click(function() { $( "#gfg" ).dialog( "open" ); }); }); </script> </head> <body> <div id = "gfg" title ="GeeksforGeeks"> Jquery UI| modal dialog option </div> <button id = "geeks">Open Dialog</button> </body> </html>
Producción: