jQuery UI consta de widgets GUI, efectos visuales y temas implementados mediante jQuery, CSS y HTML. jQuery UI es excelente para crear interfaces de interfaz de usuario para las páginas web. El widget jQueryUI Datepickers en jQueryUI permite a los usuarios ingresar fechas de manera fácil y visual. En este artículo veremos cómo usar la opción Texto anterior en jQuery UI Datepicker. La opción Texto anterior especifica el texto para reemplazar el título predeterminado de Anterior para el mes anterior en el selector de fecha de la interfaz de usuario de jQuery.
Sintaxis:
$(".selector").datepicker( prevText: 'click'} );
Enlace CDN: 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> <!-- Javascript --> <script> $(function () { $("#gfg").datepicker({ dateFormat: "yy/dd/mm", prevText: "click" }); }); </script> </head> <h1>GeeksforGeeks</h1> <h3>jQuery UI | datepicker prevText option</h3> <body> <!-- HTML --> <p>Enter Date: <input type="text" id="gfg" /></p> </body> </html>
Producción:
Referencia: https://api.jqueryui.com/datepicker/#option-prevText