案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<form action="/example/demo_form.aspx" id="numform" oninput="x.value=parseInt(a.value)+parseInt(b.value)">0
6
<input type="range" id="a" name="fname" value="50">100
7
+<input type="number" id="b" name="lname" value="50">
8
<br><br>
9
<input type="submit">
10
</form>
11
12
<p>下面的一个 <output> 元素位于表单之外的,但仍然属于表单的一部分:</p>
13
14
<p><b>注释:</b>Internet Explorer 不支持 <output> 标签。</p>
15
16
</body>
17
</html>