El método jQuery UI datepicker setDate() se usa para establecer la fecha del campo de fecha.
Sintaxis:
$( ".selector" ).datepicker( "setDate" )
Parámetros: este método no acepta ningún parámetro.
Valores devueltos: este método devuelve la fecha.
Enfoque: Primero, agregue los scripts móviles de jQuery necesarios para su proyecto.
<script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js”></script>
<script src=”https://ajax.googleapis.com/ajax /libs/jqueryui/1.8.16/jquery-ui.js”></script>
<enlace href=”http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/ui-lightness /jquery-ui.css” rel=”hoja de estilo” type=”texto/css” />
Ejemplo 1:
HTML
<!doctype html> <html lang = "en"> <head> <meta charset="utf-8"> <meta name="viewport" content= "width=device-width, initial-scale=1"> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js"> </script> <script src= "https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js"> </script> <link href= "http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/ui-lightness/jquery-ui.css" rel="stylesheet" type="text/css" /> <script> $(function() { $( "#datepicker" ).datepicker(); $( "#datepicker" ).datepicker("setDate","06/01/21"); }); </script> </head> <body> <p>Date: <input type = "text" id = "datepicker"></p> </body> </html>
Producción: