aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/keyboardevent/which/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/it/web/api/keyboardevent/which/index.html')
-rw-r--r--files/it/web/api/keyboardevent/which/index.html60
1 files changed, 60 insertions, 0 deletions
diff --git a/files/it/web/api/keyboardevent/which/index.html b/files/it/web/api/keyboardevent/which/index.html
new file mode 100644
index 0000000000..0ab544b60c
--- /dev/null
+++ b/files/it/web/api/keyboardevent/which/index.html
@@ -0,0 +1,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>