Para destruir un selector de fecha en jQuery UI, usaremos el método destroy() . El método jQuery UI destroy() se usa para eliminar la funcionalidad completa de datepicker() .
Sintaxis:
$(".selector" ).datepicker( "destroy" )
Parámetros: este método no acepta ningún parámetro.
Valores devueltos: este método simplemente devuelve el selector de fecha a su estado preinicial.
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:
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("destroy"); }); </script> </head> <body> <p>Date: <input type="text" id="datepicker"></p> </body> </html>
Producción: