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


HTML TouchEvent shiftKey用法及代碼示例


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


相關用法


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