UK[ˈaʊtpʊt] US[ˈaʊtˌpʊt]

n.Output; output; work; [calculation] output signal

vt.Output

Plural: outputs

html output tag syntax

Function:Define different types of output, such as script output.

Description: <output> tag is a new tag in HTML 5.

Note: Internet Explorer 8 and earlier versions do not support the <output> tag.

html output tag example

<!DOCTYPE html>
<html>
<body>

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

<p><b>注释:</b>Internet Explorer 不支持 output 标签。</p>

</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance