jQuery Mobile - Textinput desativado
Descrição
Atributo disabled = "disabled"é usado para desabilitar o controle de entrada. O botão não aceita alterações do usuário.
Exemplo
O exemplo a seguir demonstra o uso para desativar a entrada 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>Disabled Input Type Example</h2>
<label for = "src">Disabled Text Input</label>
<input type = "text" id = "src" disabled = "disabled">
<label for = "src1">Clear the Disabled Field</label>
<input type = "text" data-clear-btn = "true" id = "src1" disabled = "disabled">
<label for = "src2">Disabled Search Input</label>
<input type = "search" id = "src2" disabled = "disabled">
<label for = "src3"> Disabled Textarea</label>
<textarea type = "textarea" id = "src3" disabled = "disabled"></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_disabled.html arquivo na pasta raiz do servidor.
Abra este arquivo HTML como http: //localhost/textinput_disabled.html e a seguinte saída será exibida.