jQuery UI consta de widgets GUI, efectos visuales y temas implementados mediante HTML , CSS y jQuery . jQuery UI es excelente para crear interfaces de interfaz de usuario para las páginas web.
El método jQuery UI Button option() se usa para establecer o devolver el valor actualmente asociado con el elemento especificado.
Sintaxis:
- option(optionName): Devuelve el valor actualmente asociado con el optionName especificado.
var isDisabled = $(".selector").button("option", "disabled");
- option(): Devuelve el objeto que contiene pares clave/valor que representan el hash de opciones del botón actual.
var options = $( ".selector" ).button( "option" );
- option( optionName, value ): Establece el valor de la opción del botón que está asociado con el optionName especificado .
$( ".selector" ).button( "option", "disabled", true );
- opción(opciones): Establece una o más opciones para el elemento botón.
$( ".selector" ).button( "option", { disabled: true } );
Enlace CDN: Primero, agregue los scripts jQuery UI necesarios para su proyecto.
<enlace rel=”hoja de estilo” href=”//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”//code.jquery.com/jquery- 1.12.4.js”></script>
<script src=”//code.jquery.com/ui/1.12.1/jquery-ui.js”></script>
Ejemplo: El siguiente código demuestra el método button() de jQuery UI.
HTML
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="stylesheet" href= "//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css"> <script src= "//code.jquery.com/jquery-1.12.4.js"></script> <script src= "//code.jquery.com/ui/1.12.1/jquery-ui.js"> </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3>jQuery UI Button option() Method</h3> <button>GFG Button</button> <br><br> <input type="button" id="divID" style="padding: 5px 15px;" value="Set option() Method Value"> </center> <script> $(document).ready(function () { $("button").button(); $("#divID").on('click', function () { $("button").button("option", "disabled", true); }); }); </script> </body> </html>
Producción:
Referencia: https://api.jqueryui.com/button/#method-option