[HTML] [tag] <output>

<output> (tag HTML) mostra il risultato di un’azione dell’utente o di un calcolo, generalmente ottenuto tramite uno script.

attributi

speciali

Caricamento…

Caricamento…

Caricamento…

globali
Caricamento…

scheda tecnica

– Contenuto: flusso, fraseggio, visibile
– Tipo: blocco
– Intefraccia DOM: HTMLOutputElement

supporto browser

[in costruzione]

Sintassi

<output>[risultato]</output>

Default CSS

output {
  display: block;
}

Esempio

<form oninput="result.value=parseInt(a.value)+parseInt(b.value)">
    <input style="display:inline" type="range" name="b" value="50" /> +
    <input style="display:inline" type="number" name="a" value="10" /> =
    <output style="display:inline" name="result">60</output>
</form>

+ = 60
<form onsubmit="return false" oninput="o.value = a.valueAsNumber + b.valueAsNumber">
 <input name=a type=number step=any> +
 <input name=b type=number step=any> =
 <output name=o for="a b"></output>
</form>

Contenuti correlati

  • CSS
  • HTML
  • JavaScript
  • jQuery
  • PHP
  • SQL
  • WORDPRESS

Fonti esterne

html, tag html

Related Articles

0 Comment

Rispondi