Descrição
o Widget DatePickerfunção pode ser usada com widgets em JqueryUI. É o foco na entrada para abrir um calendário interativo em uma pequena sobreposição.
Sintaxe
Aqui está a sintaxe simples para usar DatePicker -
$( "#datepicker" ).datepicker();
Exemplo
A seguir está um exemplo simples que mostra o uso do DatePicker -
<!doctype html>
<html lang = "en">
<head>
<meta charset = "utf-8">
<title>jQuery UI Datepicker - Default functionality</title>
<link rel = "stylesheet"
href = "//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js">
</script>
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
</head>
<body>
<p>Date: <input type = "text" id = "datepicker"></p>
</body>
</html>
Isso produzirá o seguinte resultado -
jquery-widgets.htm