codecamp

HTML command label 属性

HTML <command> label 属性

HTML command 标签参考手册 HTML <command> 标签

实例

一个带有 label 的 <command> 元素:

<menu>
<command type="command" label="Save changes"
onclick="save()">Save</command>
</menu>

尝试一下 »

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

目前,几乎所有的主流浏览器都不支持 label 属性。


定义和用法

必需的 label 属性规定 command 的名称,用于展示给用户。


HTML 4.01 与 HTML5之间的差异

<command> 标签是 HTML5 中的新标签。


语法

<command label="text">

属性值

描述
text规定 command 的可见标签。


HTML command 标签参考手册 HTML <command> 标签
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML标签

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }