本篇文章主要的向大家介紹了關於html5 command標籤的定義和用法,還有關於html5 command標籤的使用案例詳解,雖然
html5 command標籤的定義和用法:
command 元素表示用戶能夠呼叫的命令。
只有當 command 元素位於 menu 元素內時,該元素才是可見的。否則不會顯示這個元素,但是可以用它來規定鍵盤快速鍵。
HTML5
<menu> <command type="command" label="Save" onclick="save()">Save</command> </menu>
#html5< command>標籤使用案例詳解:
在html5中,
html5 command標籤的屬性:
#checked:當頁面載入時,command是否被選取。
disabled:command 是否可用。
icon:作為 command 來顯示的圖片的 URL。
label:command的名字,對使用者可見。
radiogroup:可進行切換且將被切換的 command 所屬的群組名稱。
type:command 的型別。
html5 command標籤的標準屬性
##< ;command> 標籤支援HTML 5 中的標準屬性。 html5 command標籤的格式:<menu> <command >内容</command> </menu>
html5 command標籤的案例:
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>html< command>标签_PHP笔记</title> </head> <body> <menu> <command type="command">点击我</command> </menu> </body> </html>
瀏覽器支援:
沒有瀏覽器支援HTML 4.01 與 HTML 5 之間的差異
html table表是什麼?