TouchEvent altKey属性是一个只读属性,用于返回一个布尔值,该值指示在触发触摸事件时是否按下了“ALT”键。 TouchEvent altKey属性通常返回false,因为通常,触摸设备没有alt键。
用法:
event.altKey
返回值:如果按下alt键,则返回true,否则返回false。
以下示例程序旨在说明TouchEvent的altKey属性:
例:查找是否在触摸屏上按下了“ALT”键。
<!DOCTYPE html>
<html>
<meta name="viewport"
content="width=device-width,
initial-scale=1">
<head>
<title>TouchEvent altKey property in HTML</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body ontouchstart="isKeyPressed(event)">
<h1>GeeksforGeeks</h1>
<h2>TouchEvent altKey property</h2>
<br>
<p>Touch somewhere in the document and wait for
an alert to tell if the ALT key was pressed or not.</p>
<script>
function count(event) {
// Check whether the ALT key has been pressed
// or not.
if (event.altKey) {
alert("ALT key has been pressed!");
} else {
alert("ALT key has not been pressed!");
}
}
</script>
</body>
</html>
输出:
- 在单击按钮之前:
- 单击按钮后:
支持的浏览器:
- IE浏览器
- 谷歌浏览器
- Firefox
相关用法
- HTML KeyboardEvent altKey用法及代码示例
- HTML TouchEvent shiftKey用法及代码示例
- HTML TouchEvent ctrlKey用法及代码示例
- HTML TouchEvent metaKey用法及代码示例
- HTML TouchEvent touches用法及代码示例
- HTML TouchEvent targetTouches用法及代码示例
- javascript MouseEvent altKey用法及代码示例
- HTML DOM id用法及代码示例
- HTML DOM URL用法及代码示例
- HTML Bdo dir用法及代码示例
- HTML li value用法及代码示例
- HTML DOM specified用法及代码示例
- HTML Map name用法及代码示例
注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM TouchEvent altKey Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。