HTML
HTML <output> 元素
将计算结果显示在 <output> 元素中
源代码:
点击运行 »
<form oninput="result.value=parseInt(a.value)+parseInt(b.value)"> <input type="range" name="b" value="50" /> + <input type="number" name="a" value="10" /> = <output name="result">60</output> </form>
运行结果:
点击运行 »