Gli ultimi tutorial di sviluppo web
 

Input Text value Property

<Oggetto Text Input

Esempio

Modificare il valore di un campo di testo:

document.getElementById("myText").value = "Johnny Bravo";
Prova tu stesso "

Definizione e l'utilizzo

Gli insiemi di proprietà di valore o restituisce il valore del value attributo di un campo di testo.

La proprietà valore contiene il valore di default o il valore di un utente digita (or a value set by a script) .


Supporto browser

Internet ExplorerFirefoxOperaGoogle ChromeSafari

La proprietà è supportata in tutti i principali browser.


Sintassi

Restituisce la proprietà value:

textObject .value

Impostare la proprietà value:

textObject .value= I valori delle proprietà
Valore Descrizione
text Specifica il valore del campo di testo di input

Dettagli tecnici

Valore di ritorno: A String, che rappresenta il valore del campo di testo

Altri esempi

Esempio

Ottenere il valore di un campo di testo:

var x = document.getElementById("myText").value;

Il risultato di x sarà:

Mickey
Prova tu stesso "

Esempio

validazione dei form:

var at = document.getElementById("email").value.indexOf("@");
var age = document.getElementById("age").value;
var fname = document.getElementById("fname").value;
submitOK = "true";

if (fname.length > 10) {
  alert("The name may have no more than 10 characters");
  submitOK = "false";
}

if (isNaN(age) || age < 1 || age > 100) {
  alert("The age must be a number between 1 and 100");
  submitOK = "false";
}

if (at == -1) {
  alert("Not a valid e-mail!");
  submitOK = "false";
}

if (submitOK == "false") {
  return false;
}
Prova tu stesso "

Esempio

elenco a discesa in una forma:

var mylist = document.getElementById("myList");
document.getElementById("favorite").value = mylist.options[mylist.selectedIndex].text;
Prova tu stesso "

Esempio

Un altro elenco a discesa:

var no = document.getElementById("no");
var option = no.options[no.selectedIndex].text;
var txt = document.getElementById("result").value;
txt = txt + option;
document.getElementById("result").value = txt;
Prova tu stesso "

Esempio

Un esempio che mostra la differenza tra la defaultValue e proprietà value:

var x = document.getElementById("myText");
var defaultVal = x.defaultValue;
var currentVal = x.value;
Prova tu stesso "

Pagine correlate

Di riferimento HTML: HTML <input> attributo value


<Oggetto Text Input