HTML <saída> para atributo

❮ Tag HTML <saída>

Exemplo

Faça um cálculo e mostre o resultado em um elemento <output>:

<form oninput="x.value=parseInt(a.value)+parseInt(b.value)">
  <input type="range" id="a" value="50">
  +<input type="number" id="b" value="25">
  =<output name="x" for="a b"></output>
</form>

Definição e uso

O foratributo especifica a relação entre o resultado do cálculo e os elementos usados ​​no cálculo.


Suporte ao navegador

Os números na tabela especificam a primeira versão do navegador que suporta totalmente o atributo.

Attribute
for 10.0 13.0 4.0 7.0  11.5

Sintaxe

<output for="element_id">

Valores de atributo

Value Description
element_id Specifies a space separated list of ids of one or more elements that specifies the relationship between the result of the calculation, and the elements used in the calculation

❮ Tag HTML <saída>