第1章 第486节 dom event altKey

推荐给朋友

altKey 事件属性

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

语法

event.altKey=true|false|1|0

在线实例

实例

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

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

尝试一下