當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML TouchEvent ctrlKey用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM TouchEvent ctrlKey Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。