英 [?a?tp?t] 美 [?a?t?p?t]
n.輸出;產(chǎn)量;作品;[計(jì)]輸出信號(hào)
vt.輸出
復(fù)數(shù): outputs
html output標(biāo)簽 語(yǔ)法
作用:定義不同類型的輸出,比如腳本的輸出。
說(shuō)明:<output> 標(biāo)簽是 HTML 5 中的新標(biāo)簽。
注釋:nternet Explorer 8 以及更早的版本不支持 <output> 標(biāo)簽。
html output標(biāo)簽 示例
<!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 標(biāo)簽。</p> </body> </html>
運(yùn)行實(shí)例 ?
點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例