blob: ffa370b596f508e44a7ca30c5a355f2370d1735a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
---
title: event.altKey
slug: Web/API/MouseEvent/altKey
tags:
- DOM
- Gecko
- Gecko DOM Reference
translation_of: Web/API/MouseEvent/altKey
translation_of_original: Web/API/event.altKey
---
<p>{{ ApiRef() }}</p>
<h3 id="Summary" name="Summary">Summary</h3>
<p>イベントが発生したときALTキーが押されていたかどうかを示します。</p>
<h3 id="Syntax" name="Syntax">Syntax</h3>
<pre class="eval"><i>bool</i> = event.altKey
</pre>
<p><code>bool</code> は <code>true</code> か <code>false</code> であり、イベントが発生したときに ALT キーが押されていたかどうかを示しています。</p>
<h3 id="Example" name="Example">Example</h3>
<pre><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>
</pre>
<p>{{ languages( { "en": "en/DOM/event.altKey", "pl": "pl/DOM/event.altKey" } ) }}</p>
|