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