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