鼠标事件:shiftKey 属性
MouseEvent.shiftKey
只读属性是一个布尔值,指示在发生给定鼠标事件时是否按下了 shift 键。
价值
布尔值,其中 true
表示按下该键,false
表示未按下该键。
例子
此示例在您触发 click
事件时记录 shiftKey
属性。
HTML
html
<p>Click anywhere to test the <code>shiftKey</code> property.</p>
<p id="log"></p>
JavaScript
js
let log = document.querySelector("#log");
document.addEventListener("click", logKey);
function logKey(e) {
log.textContent = `The shift key is pressed: ${e.shiftKey}`;
}
结果
规范
规范 |
---|
UI 事件 # dom-mouseevent-shiftkey |
浏览器兼容性
BCD 表格仅在浏览器中加载