jQuery Mobile - Textinput Datetime
Descrição
datetimeO atributo type na entrada define o controle de data e hora. Uma data e hora (ano, mês, dia, hora, minuto, segundo, frações de segundo) são codificados de acordo com ISO 8601 com o fuso horário definido para UTC.
Exemplo
O exemplo a seguir demonstra o uso da entrada de data e hora 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">
<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>
</head>
<body>
<form>
<h2>Datetime Input Example</h2>
<label for = "src">Datetime Input</label>
<input type = "datetime" id = "src" data-clear-btn = "false">
<label for = "src1">Clear the Datetime Field</label>
<input type = "datetime" data-clear-btn = "true" id = "src1">
<label for = "src2">Datetime Local Input</label>
<input type = "datetime-local" id = "src2" data-clear-btn = "false">
<label for = "src3">Clear the Datetime Local Field</label>
<input type = "datetime-local" data-clear-btn = "true" id = "src3">
</form>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -
Salve o código html acima como textinput_datetime.html arquivo na pasta raiz do servidor.
Abra este arquivo HTML como http: //localhost/textinput_datetime.html e a seguinte saída será exibida.