jQuery Mobile - Textinput Enhanced
Descrição
Você pode aumentar a qualidade e a funcionalidade das entradas de texto configurando o data-enhanced = "true" atributo no campo de entrada.
Exemplo
O exemplo a seguir demonstra o uso de textinput aprimorado 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>Enhanced Input Type Example</h2>
<label for = "src">Enhanced Input</label>
<div class = "ui-input-text ui-body-inherit">
<input type = "text" id = "src" data-enhanced = "true">
</div>
<label for = "src2">Enhanced Search Input</label>
<div class = "ui-input-search ui-input-text ui-body-inherit">
<input type = "text" data-type = "search" id = "src2" data-enhanced = "true">
</div>
<label for = "src3">Textarea Enhanced </label>
<textarea type = "textarea" id = "src3" data-enhanced = "true" class = "ui-input-text
ui-body-inherit ui-corner-all ui-shadow-inset ui-input-has-clear"></textarea>
</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_enhanced.html arquivo na pasta raiz do servidor.
Abra este arquivo HTML como http: //localhost/textinput_enhanced.html e a seguinte saída será exibida.