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


HTML TouchEvent altKey用法及代碼示例


TouchEvent altKey屬性是一個隻讀屬性,用於返回一個布爾值,該值指示在觸發觸摸事件時是否按下了“ALT”鍵。 TouchEvent altKey屬性通常返回false,因為通常,觸摸設備沒有alt鍵。

用法:

event.altKey

返回值:如果按下alt鍵,則返回true,否則返回false。


以下示例程序旨在說明TouchEvent的altKey屬性:

例:查找是否在觸摸屏上按下了“ALT”鍵。

<!DOCTYPE html> 
<html> 
<meta name="viewport" 
      content="width=device-width, 
               initial-scale=1"> 
  
<head> 
    <title>TouchEvent altKey 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 altKey property</h2> 
    <br> 
  
    <p>Touch somewhere in the document and wait for  
      an alert to tell if the ALT key was pressed or not.</p> 
  
    <script> 
        function count(event) { 
            
            //  Check whether the ALT key has been pressed 
            //  or not. 
            if (event.altKey) { 
                alert("ALT key has been pressed!"); 
            } else { 
                alert("ALT key has not been pressed!"); 
            } 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

  • 在單擊按鈕之前:
  • 單擊按鈕後:

支持的瀏覽器:

  • IE瀏覽器
  • 穀歌瀏覽器
  • Firefox


相關用法


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