Entrada de texto, telefone e e-mail
Descrição
tel type entrada permite que o usuário insira o número de telefone.
email typeatributo na entrada aceita apenas valor de e-mail. Este tipo é usado para campos de entrada que devem conter um endereço de e-mail.
Exemplo
O exemplo a seguir demonstra o uso de entrada de telefone e e-mail 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>Telephone Input Example</h2>
<label for = "src">Telphone Input</label>
<input type = "tel" id = "src" data-clear-btn = "false">
<label for = "src1">Clear the Telephone Field</label>
<input type = "tel" data-clear-btn = "true" id = "src1">
<h2>Email Input Example</h2>
<label for = "src2">Email Input</label>
<input type = "email" id = "src2" data-clear-btn = "false">
<label for = "src3">Clear the Email Field</label>
<input type = "email" 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_telephone_email.html arquivo na pasta raiz do servidor.
Abra este arquivo HTML como http: //localhost/textinput_telephone_email.html e a seguinte saída será exibida.