鼠标事件:altKey 属性
MouseEvent.altKey
只读属性是一个布尔值,指示在发生给定鼠标事件时是否按下了 alt 键。
请注意,浏览器在某些操作系统上可能无法始终检测到 alt 键。例如,在某些 Linux 变体中,左键单击与 alt 键组合使用来移动或调整窗口大小。
注意:在 Macintosh 键盘上,此键也称为 option 键。
值
一个布尔值,其中 true
表示已按下键,而 false
表示未按下键。
示例
此示例在您触发 click
事件时记录 altKey
属性。
HTML
html
<p>Click anywhere to test the <code>altKey</code> property.</p>
<p id="log"></p>
JavaScript
js
let log = document.querySelector("#log");
document.addEventListener("click", logKey);
function logKey(e) {
log.textContent = `The alt key is pressed: ${e.altKey}`;
}
结果
规范
规范 |
---|
UI 事件 # dom-mouseevent-altkey |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。