事件发生时是否按下了 ALT 键?
if (event.altKey) {
text = "The ALT key was pressed!";
} else {
text = "The ALT key was NOT pressed!";
}
亲自试一试 »
这个altKey
属性回报true
如果ALT 键被按下当键盘事件发生时。
否则返回false
。
这个altKey
属性是只读的。
event.altKey
返回值: | 一个布尔值。 退货 true 如果键盘事件发生时按下 ALT 键。否则返回 false 。 |
---|---|
DOM 版本: | DOM 级别 2键盘事件。 |
event.altkey
是 DOM Level 2 (2001) 功能。
所有浏览器都完全支持它:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | 9-11 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!