HTML DOM中的KeyboardEvent altKey属性是只读属性,用于返回指示是否按下alt键的布尔值。如果按下alt键,则返回True,否则返回false。
用法:
event.altKey
下面的程序演示了HTML中的KeyboardEvent altkey属性:
例:本示例检查是否按下了“ALT”键。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM KeyboardEvent altKey property
</title>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>KeyboardEvent altKey Property</h2>
<p>
Check whether the alt key is pressed or not
</p>
<input type="text" onkeydown="keyboard(event)">
<p id = "test"></p>
<!-- script to check alt key event -->
<script>
function keyboard(event) {
var a = document.getElementById("test");
if (event.altKey) {
a.innerHTML = "The ALT key has been pressed!";
}
else {
a.innerHTML = "The ALT key has not been pressed!";
}
}
</script>
</body>
</html>
输出:
按下键之前:
之后按键:
支持的浏览器:下面列出了KeyboardEvent altKey属性支持的浏览器:
- Opera
- IE浏览器
- 谷歌浏览器
- Firefox
- 苹果Safari
相关用法
- HTML TouchEvent altKey用法及代码示例
- HTML KeyboardEvent which用法及代码示例
- HTML KeyboardEvent key用法及代码示例
- HTML KeyboardEvent metaKey用法及代码示例
- HTML KeyboardEvent location用法及代码示例
- HTML KeyboardEvent shiftKey用法及代码示例
- HTML KeyboardEvent code用法及代码示例
- HTML KeyboardEvent keyCode用法及代码示例
- HTML keyboardEvent charCode用法及代码示例
- javascript MouseEvent altKey用法及代码示例
- HTML DOM KeyboardEvent getModifierState()用法及代码示例
- HTML Bdo dir用法及代码示例
- HTML DOM specified用法及代码示例
- HTML DOM id用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML DOM | KeyboardEvent altKey Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。