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


HTML TouchEvent metaKey用法及代碼示例


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

用法:

event.metaKey

返回值:如果按了meta鍵,則返回true,否則返回false。


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

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

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

輸出:

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

支持的瀏覽器:

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


相關用法


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