执行计算并在 <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>
亲自试一试 »
这个<output>
标签用于表示计算结果(如脚本执行的结果)。
表中的数字指定完全支持该元素的第一个浏览器版本。
Element | |||||
---|---|---|---|---|---|
<output> | 10.0 | 13.0 | 4.0 | 5.1 | 11.0 |
Attribute | Value | Description |
---|---|---|
for | element_id | Specifies the relationship between the result of the calculation, and the elements used in the calculation |
form | form_id | Specifies which form the output element belongs to |
name | name | Specifies a name for the output element |
这个<output>
标签还支持HTML 中的全局属性。
这个<output>
标签还支持HTML 中的事件属性。
HTML DOM 参考:输出对象
大多数浏览器都会显示<output>
具有以下默认值的元素:
output {
display: inline;
}
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!