aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/event/which/index.html
blob: 0ab544b60ceacf89ddfbe0f7552c7d26751b31ec (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
49
50
51
52
53
54
55
56
57
58
59
60
---
title: event.which
slug: Web/API/Event/which
tags:
  - DOM
  - Gecko
  - Reference_del_DOM_di_Gecko
  - Tutte_le_categorie
translation_of: Web/API/KeyboardEvent/which
---
<p>{{ ApiRef() }}</p>
<h3 id="Sommario" name="Sommario">Sommario</h3>
<p>Restituisce il valore di <code>keyCode</code> se il tasto premuto non è un tasto carattere, altrimenti restituisce il valore di <code>charCode</code> se è stato premuto un tasto alfanumerico.</p>
<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
<pre class="eval"><i>int</i> = event.which
</pre>
<p><code>int</code> è il codice numerico del tasto che è stato premuto, sia esso alfanumerico oppure no. Si vedano <code><a href="it/DOM/event.charCode">charCode</a></code> e <code><a href="it/DOM/event.keyCode">keyCode</a></code> per ulteriori informazioni.</p>
<h3 id="Esempio" name="Esempio">Esempio</h3>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;esempio con charCode/keyCode/which&lt;/title&gt;

&lt;script type="text/javascript"&gt;

function mostraTastoPremuto(evt)
{
alert("Evento onkeypress: \n"
      + "proprietà keyCode: " + evt.keyCode + "\n"
      + "proprietà which: " + evt.which + "\n"
      + "proprietà charCode: " + evt.charCode + "\n"
      + "Tasto premuto (se alfanumerico): "
      + String.fromCharCode(evt.charCode) + "\n"
     );
}


function pressioneTasto(evt)
{
alert("onkeydown handler: \n"
      + "proprietà keyCode: " + evt.keyCode + "\n"
      + "proprietà which: " + evt.which + "\n"
     );
}


&lt;/script&gt;
&lt;/head&gt;

&lt;body
 onkeypress="mostraTastoPremuto(event);"
 onkeydown="pressioneTasto(event);"
&gt;

&lt;p&gt;Premere un tasto&lt;/p&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
<p>Non è parte di alcuna specifica.</p>