当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。