jQuery Mobile - Textinput Text e Textarea
Descrizione
- L'inserimento del tipo di testo consente all'utente di inserire testo di una riga.
- Il tag <textarea> consente all'utente di inserire testo su più righe.
Esempio
L'esempio seguente mostra l'uso del testo e dell'input dell'area di testo 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>Text Input Example</h2>
<label for = "text">Text input</label>
<input type = "text" id = "text" data-clear-btn = "false">
<label for = "text1">Clear the Text</label>
<input type = "text" data-clear-btn = "true" id = "text1">
<h2>Textarea Example</h2>
<textarea type = "textarea" id = "txt"></textarea>
</form>
</body>
</html>
Produzione
Eseguiamo i seguenti passaggi per vedere come funziona il codice sopra:
Salva il codice html sopra come textinput_text.html file nella cartella principale del server.
Apri questo file HTML come http: //localhost/textinput_text.html e verrà visualizzato il seguente output.