我用命令標籤,其輸出是不正確的 這裏是代碼:沒有得到命令標籤的期望輸出HTML
<html>
<body>
<menu>
<command onclick="alert('Hello World')">Click here</command>
</menu>
</body>
</html>
我觀看輸出在Firefox和Internet Explorer。
我用命令標籤,其輸出是不正確的 這裏是代碼:沒有得到命令標籤的期望輸出HTML
<html>
<body>
<menu>
<command onclick="alert('Hello World')">Click here</command>
</menu>
</body>
</html>
我觀看輸出在Firefox和Internet Explorer。
命令標籤沒有被任何瀏覽器之外的Internet Explorer 9 http://www.w3schools.com/tags/tag_command.asp
的<command>
標籤支持目前僅支持在IE 9不能提前或更高版本,或其他任何瀏覽器。 http://www.w3schools.com/tags/tag_command.asp
的command
元素已經提出了各種草案,其中包括在2012年first HTML5 CR(它被標記爲「有風險」由於缺乏實現的),但它已經從較新的草案刪除。因此,它的任何實現以及相關的Command API都應該被視爲實驗性的。
目前的草案有類似的目的menuitem
element。但請注意,它僅僅是一個提議的元素,它並不存在於當前的版本中,並且它可能在Firefox中的實驗實現有限。
結論取決於您試圖達到的目標。 command
的想法是提供menu
元素, a way of setting up a dropdown menu of scripted operations. In the simplest case, you can do such things with the normal
選擇element with an
onchange屬性,其中的值執行不同的操作,具體取決於所選選項的索引。
thnx爲ans。 – geek
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/command –
您的瀏覽器可能不支持命令標記 – James
@maciekm http://blog.izs.me/ post/2353458699/an-open-letter-to-javascript-leaders-about – loveNoHate