blob: b282dcb2ee9f515484fffc81a323bb00ab5f1e5f (
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
46
47
48
|
---
title: event.altKey
slug: Web/API/MouseEvent/altKey
tags:
- DOM
- Gecko
- Reference_del_DOM_di_Gecko
- Tutte_le_categorie
translation_of: Web/API/MouseEvent/altKey
translation_of_original: Web/API/event.altKey
original_slug: Web/API/Event/altKey
---
<p>{{ ApiRef() }}</p>
<h3 id="Sommario" name="Sommario">Sommario</h3>
<p>Indica se il tasto ALT era premuto mentre l'evento si verificava.</p>
<h3 id="Syntax" name="Syntax">Syntax</h3>
<pre class="eval"><i>bool</i> = event.altKey
</pre>
<p><code>bool</code> vale <code>true</code> se il tasto ALT era premuto, altrimenti <code>false</code>.</p>
<h3 id="Esempio" name="Esempio">Esempio</h3>
<pre><html>
<head>
<title>esempio tasto ALT</title>
<script type="text/javascript">
function mostraCarattere(e){
alert(
"Tasto premuto: " + String.fromCharCode(e.charCode) + "\n"
+ "Codice carattere: " + e.charCode + "\n"
+ "Tasto ALT premuto: " + e.altKey + "\n"
);
}
</script>
</head>
<body onkeypress="mostraCarattere(event);">
<p>
Prova a premere un tasto tenendo premuto ALT e prova a premere un tasto senza premere ALT.<br />
Puoi anche provare a premere ALT+SHIFT.
</p>
</body>
</html>
</pre>
<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent-altKey">altKey </a></p>
<p>{{ languages( { "en": "en/DOM/event.altKey", "pl": "pl/DOM/event.altKey" } ) }}</p>
|