<output name>

name - назва елемента. <output name="text">...</output>

Параметри:

text - назва елемента.

Опис:

name атрибут тегу output який вказує назву елемента.

Приклад:

+
<form id="test" oninput="s.value = parseInt(x.value) + parseInt(y.value)"> <input type="number" id="x"> + <input type="number" id="y"> <output name="s" for="x+y" form="test"></output> </form>