El método de opción del selector de fecha de jQuery UI (optionName, value) se usa para establecer el valor de la opción de botón asociada con el optionName especificado.
Sintaxis:
$( ".selector" ).datepicker( "option", "disabled", true )
Parámetros:
- optionName: Opción a marcar.
- valor: valor a comprobar
Valores devueltos: este método devuelve un valor de objeto.
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 href= "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet" /> <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").datepicker(); $("#gfg").datepicker("option", "enable", true); }); </script> </head> <body> <p>Enter Date: <input type="text" id="gfg" /></p> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <link href= "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet" /> <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").datepicker(); $("#gfg").datepicker("option", "disabled", true); }); </script> </head> <body> <p>Enter Date: <input type="text" id="gfg" /></p> </body> </html>
Producción: