实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<script>
5
function save()
6
{
7
alert("Some javaScript....");
8
}
9
</script>
10
</head>
11
<body>
12
13
<menu>
14
<command type="command" label="Save" onclick="save()">Save</command>
15
</menu>
16
17
<p><b>Note:</b> The command element is currently only supported in IE9.</p>
18
19
</body>
20
</html>