jQuery Mobile - Widget Datapicker
Descrição
A função DatePicker pode ser usada com widgets usando JqueryUI no jQuery mobile, pois não suporta widget jQuery mobile. É usado para focar na entrada para abrir um calendário interativo em uma pequena sobreposição.
Popup Datapicker
O calendário é exibido quando a entrada é focada para inserir a data. Adicionardata-role = "date"no campo <input> para incluir a data, ele é exibido no formato dd / mm / aa .
Exemplo
O exemplo a seguir demonstra o uso de datapicker popup no jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<link rel = "stylesheet" href = "https://rawgithub.com/arschmitz/jquery-mobile-datepicker-wrapper/master/jquery.mobile.datepicker.css" />
<script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script src = "https://rawgithub.com/jquery/jquery-ui/1-10-stable/ui/jquery.ui.datepicker.js"></script>
<script src = "https://rawgithub.com/arschmitz/jquery-mobile-datepicker-wrapper/master/jquery.mobile.datepicker.js"></script>
</head>
<body>
<h2>Popup Datapicker Example</h2>
<form>
<input type = "text" data-role = "date">
</form>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -
Salve o código html acima como popup_datapicker.html arquivo na pasta raiz do servidor.
Abra este arquivo HTML como http: //localhost/popup_datapicker.html e a seguinte saída será exibida.
Datapicker Inline
Incluir data-inline = "true" para exibir o calendário interativo.
Exemplo
O exemplo a seguir demonstra o uso de datapicker embutido no jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<link rel = "stylesheet" href = "https://rawgithub.com/arschmitz/jquery-mobile-datepicker-wrapper/master/jquery.mobile.datepicker.css" />
<script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script src = "https://rawgithub.com/jquery/jquery-ui/1-10-stable/ui/jquery.ui.datepicker.js"></script>
<script src = "https://rawgithub.com/arschmitz/jquery-mobile-datepicker-wrapper/master/jquery.mobile.datepicker.js"></script>
</head>
<body>
<h2>Popup Datapicker Example</h2>
<form>
<input type = "text" data-role = "date" data-inline = "true">
</form>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -
Salve o código html acima como inline_datapicker.html arquivo na pasta raiz do servidor.
Abra este arquivo HTML como http: //localhost/inline_datapicker.html e a seguinte saída será exibida.