event.metaKey

event.metaKey

event.metaKeyReturns: Boolean

Description: Indicates whether the META key was pressed when the event fired.

  • version added: 1.0.4event.metaKey

Returns a boolean value (true or false) that indicates whether or not the META key was pressed at the time the event fired. This key might map to an alternative key name on some platforms.

On Macintosh keyboards, the META key maps to the Command key (⌘).

On Windows keyboards, the META key maps to the Windows key.

Example:

Determine whether the META key was pressed when the event fired.

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>event.metaKey demo</title>
  <style>
  body {
    background-color: #eef;
  }
  div {
    padding: 20px;
  }
  </style>
  <script src="https://code.jquery.com/jquery-1.10.2.js" rel="external nofollow" ></script>
</head>
<body>
 
<button value="Test" name="Test" id="checkMetaKey">Click me!</button>
<div id="display"></div>
 
<script>
$( "#checkMetaKey" ).click(function( event ) {
  $( "#display" ).text( event.metaKey );
});
</script>
 
</body>
</html>

Demo:

© The jQuery Foundation and other contributors
Licensed under the MIT License.
https://api.jquery.com/event.metaKey

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部