Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

event.altKey

Summary

イベントが発生したときALTキーが押されていたかどうかを示します。

Syntax

bool = event.altKey

booltruefalse であり、イベントが発生したときに ALT キーが押されていたかどうかを示しています。

Example

<html>
<head>
<title>altKey example</title>

<script type="text/javascript">

function showChar(e){
  alert(
    "Key Pressed: " + String.fromCharCode(e.charCode) + "\n"
    + "charCode: " + e.charCode + "\n"
    + "ALT key pressed: " + e.altKey + "\n"
  );
}

</script>
</head>

<body onkeypress="showChar(event);">
<p>
Press any character key,
with or without holding down the ALT key.<br />
You can also use the SHIFT key together with the ALT key.
</p>
</body>
</html>

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, khalid32, Luna8bit
 最終更新者: khalid32,