jQuery Mobile - Input di testo disabilitato
Descrizione
Attributo disabled = "disabled"viene utilizzato per disabilitare il controllo di input. Il pulsante non accetta modifiche da parte dell'utente.
Esempio
L'esempio seguente mostra l'uso per disabilitare l'input in 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>
Produzione
Eseguiamo i seguenti passaggi per vedere come funziona il codice sopra:
Salva il codice html sopra come textinput_disabled.html file nella cartella principale del server.
Apri questo file HTML come http: //localhost/textinput_disabled.html e verrà visualizzato il seguente output.