diff options
Diffstat (limited to 'files/it/web/api/keyboardevent/which/index.html')
-rw-r--r-- | files/it/web/api/keyboardevent/which/index.html | 60 |
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><html> +<head> +<title>esempio con charCode/keyCode/which</title> + +<script type="text/javascript"> + +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" + ); +} + + +</script> +</head> + +<body + onkeypress="mostraTastoPremuto(event);" + onkeydown="pressioneTasto(event);" +> + +<p>Premere un tasto</p> + +</body> +</html> +</pre> +<h3 id="Specifiche" name="Specifiche">Specifiche</h3> +<p>Non è parte di alcuna specifica.</p> |