Introduced in HTML5
Riassunto
Il tag HTML <output>
rappresenta il risultato di un calcolo o azione dell'utente.
- Content categories Flow content, phrasing content, listed, labelable, resettable form-associated element, palpable content.
- Permitted content Phrasing content.
- Tag omission Nessuna, sia il tag di apertura che quello di chiusura sono obbligatori.
- Permitted parent elements Any element that accepts phrasing content.
- DOM interface
HTMLOutputElement
Attributi
Questo argomento include attributi globali
for
- Un elenco di ID di altri elementi, che indica che tali elementi hanno contribuito a valori di ingresso (o comunque influenzato) il calcolo.
form
- L'elemento form a cui l'elemento di output è associato (il "proprietario del form"). Il valore dell'attributo deve essere un ID di un form nello stesso documento. Nel caso in cui questo attributo non sia specificato, l'elemento di output deve essere un discendente di un form. Questo attributo permette di inserire elementi di output ovunque all'interno del documento, prescindendo dal vincolo che gli elementi output debbano essere collocati all'interno del form cui fanno riferimento.
name
- Il nome dell'elemento.
Esempio
<form oninput="result.value=parseInt(a.value)+parseInt(b.value)"> <input type="range" name="b" value="50" /> + <input type="number" name="a" value="10" /> = <output name="result"></output> </form>
Specifiche
Specifiche | Stato | Commenti |
---|---|---|
WHATWG HTML Living Standard The definition of '<output>' in that specification. |
Living Standard | |
HTML5 The definition of '<output>' in that specification. |
Recommendation |
Compatibilità fra browser
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 10 | 4.0 (2.0) | 10 | 11 | nightly |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | ? | 4.0 (2.0) | ? | ? | ? |
Vedi anche
- Other form-related elements:
<form>
,<input>
,<button>
,<datalist>
,<legend>
,<label>
,<select>
,<optgroup>
,<option>
,<textarea>
,<keygen>
,<fieldset>
,<progress>
and<meter>
.