Definizione e utilizzo
Il name attributo specifica un nome per l'elemento.
Questo attributo nome può essere utilizzato per fare riferimento all'elemento in JavaScript.
Per gli elementi di forma è anche usato come riferimento al momento della presentazione dei dati,
Per elemento iframe può essere utilizzato per indirizzare un invio del modulo.
Per l'elemento della mappa, il name attributo è associato al <img>'s usemap attributo e crea una relazione tra l'immagine e la mappa.
Per l'elemento meta, il name attributo specifica un nome per l'informazione / valore del content attributo.
Per l'elemento param, il name attributo viene utilizzato insieme al value attributo per specificare i parametri per il plugin specificato con il <object> tag.
Si applica a
Il name attributo può essere utilizzato sui seguenti elementi:
Elementi | Attributo |
---|---|
<button> | name |
<fieldset> | name |
<form> | name |
<iframe> | name |
<input> | name |
<keygen> | name |
<map> | name |
<meta> | name |
<object> | name |
<output> | name |
<param> | name |
<select> | name |
<textarea> | name |
Esempi
Esempio
Due pulsanti con nomi uguali, che presentano valori diversi quando si fa clic:
<form action="demo_form.asp" method="get">
Choose your favorite subject:
<button name="subject" type="submit" value="HTML">HTML</button>
<button name="subject" type="submit" value="CSS">CSS</button>
</form>
Prova tu stesso " Fieldset Esempio
Un <fieldset> con un name di attributo:
<fieldset name="personalia">
Name: <input type="text"><br>
Email: <input type="text"><br>
</fieldset>
Prova tu stesso " Form Esempio
Un modulo HTML con un name di attributo:
<form
action="form_action.asp"
method="get" name="myForm">
First name: <input type="text" name="fname"><br>
Last name:
<input type="text" name="lname"><br>
<input type="button" onclick="formSubmit()" value="Send form data!">
</form>
Prova tu stesso " Iframe Esempio
Un <iframe> che funge da bersaglio per un collegamento:
<iframe src="demo_iframe.htm" name="iframe_a"></iframe>
<a href="http://www.w3ii.com" target="iframe_a">w3ii.com</a>
Prova tu stesso " Input Esempio
Un modulo HTML con tre campi di input; due campi di testo e un pulsante di invio:
<form
action="demo_form.asp">
Name: <input type="text" name="fullname"><br>
Email:
<input type="text" name="email"><br>
<input type="submit" value="Submit">
</form>
Prova tu stesso " Keygen Esempio
Un modulo con un campo keygen:
<form action="demo_keygen.asp" method="get">
Username: <input type="text" name="usr_name">
Encryption: <keygen name="security">
<input type="submit">
</form>
Prova tu stesso " Map Esempio
Un'immagine-map, con aree cliccabili:
<img src="planets.gif"
width="145" height="126"
alt="Planets"
usemap="#planetmap">
<map
name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
<area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
Prova tu stesso " Meta Esempio
Utilizzare il name attributo per definire una descrizione, parole chiave, e l'autore di un documento HTML:
<head>
<meta name="description" content="Free Web tutorials">
<meta name="keywords" content="HTML,CSS,JavaScript">
<meta name="author" content="Hege Refsnes">
</head>
Prova tu stesso " Object Esempio
Un <object> elemento con un name di attributo:
<object data="helloworld.swf" width="400" height="400"
name="obj1"></object>
Prova tu stesso " Output Esempio
Eseguire un calcolo e mostrare il risultato in un <output> elemento:
<form oninput="x.value=parseInt(a.value)+parseInt(b.value)">0
<input type="range" id="a" value="50">100
+<input type="number" id="b" value="50">
=<output name="x" for="a b"></output>
</form>
Prova tu stesso " Param Esempio
Impostare il "autoplay" parametro "true" , in modo che il suono inizia a giocare non appena viene caricata la pagina:
<object data="horse.wav">
<param name="autoplay" value="true">
</object>
Prova tu stesso " Select Esempio
Un elenco a discesa con un name di attributo:
<select name="cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
Prova tu stesso " Textarea Esempio
Un area di testo con un name di attributo:
<form action="demo_form.asp">
<textarea name="comment">Enter text here...</textarea>
<input type="submit">
</form>
Prova tu stesso " Supporto per il browser
Il multiple
attributo ha la seguente supporto del browser per ogni elemento:
Elemento | |||||
---|---|---|---|---|---|
button | sì | sì | sì | sì | sì |
fieldset | sì | Non supportato | sì | sì | sì |
form | sì | sì | sì | sì | sì |
iframe | sì | sì | sì | sì | sì |
input | 1.0 | 2.0 | 1.0 | 1.0 | 1.0 |
keygen | sì | Non supportato | sì | 6.0 | sì |
map | sì | sì | sì | sì | sì |
meta | sì | sì | sì | sì | sì |
object | sì | sì | sì | sì | sì |
output | 10.0 | Non supportato | 4.0 | 5.1 | 11.0 |
param | sì | sì | sì | sì | sì |
select | sì | sì | sì | sì | sì |
textarea | sì | sì | sì | sì | sì |