html5<output>標籤
翻譯結果:
output
英[ˈaʊtpʊt] 美[ˈaʊtˌpʊt]
#n.輸出;產量;作品;[計]輸出訊號
vttt .輸出
html5<output>標籤語法
作用:<output> 標籤定義不同類型的輸出,例如腳本的輸出。
參數:
屬性 | 描述 | |
#for | id of another element | 定義輸出域相關的一個或多個元素。 |
form | formname | 定義輸入欄位所屬的一個或多個表單。 |
name | unique name | 定義物件的唯一名稱。 (表單提交時使用) |
html5<output>標籤範例
<!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>
#點擊 "執行實例" 按鈕查看線上實例