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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。