altKey 事件属性

最后更新于:2022-03-26 22:16:54

altKey 事件属性

altKey 事件属性 事件对象


定义和用法

altKey 事件属性返回一个布尔值。指示在指定的事件发生时,Alt 键是否被按下并保持住了。

语法

event.altKey=true|false|1|0


实例

实例

下面的例子可提示当鼠标按键被点击时 “ALT” 键是否已被按住:

function isKeyPressed(event){
if (event.altKey==1){
alert(" ALT 键被按下!");
}else{
alert(" ALT 键没被按下!");
}
}

尝试一下 »


altKey 事件属性 事件对象