aboutsummaryrefslogtreecommitdiff
path: root/files/it/web/api/event/ischar/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:42:17 -0500
commitda78a9e329e272dedb2400b79a3bdeebff387d47 (patch)
treee6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/it/web/api/event/ischar/index.html
parent1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff)
downloadtranslated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2
translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip
initial commit
Diffstat (limited to 'files/it/web/api/event/ischar/index.html')
-rw-r--r--files/it/web/api/event/ischar/index.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/files/it/web/api/event/ischar/index.html b/files/it/web/api/event/ischar/index.html
new file mode 100644
index 0000000000..ae1edd3975
--- /dev/null
+++ b/files/it/web/api/event/ischar/index.html
@@ -0,0 +1,30 @@
+---
+title: event.isChar
+slug: Web/API/Event/isChar
+tags:
+ - DOM
+ - Gecko
+ - Reference_del_DOM_di_Gecko
+ - Tutte_le_categorie
+translation_of: Web/API/UIEvent/isChar
+---
+<p>{{ ApiRef() }}</p>
+<h3 id="Sommario" name="Sommario">Sommario</h3>
+<p>Restituisce un booleano che indica se è stato premuto un tasto carattere o meno.</p>
+<h3 id="Sintassi" name="Sintassi">Sintassi</h3>
+<pre class="eval"><i>bool</i> = event.isChar
+</pre>
+<ul>
+ <li><code>bool</code> vale <code>true</code> se il tasto premuto è un tasto carattere, altrimenti <code>false</code></li>
+</ul>
+<h3 id="Esempio" name="Esempio">Esempio</h3>
+<pre> if e.isChar
+ ripetiInput(e.type);
+ }
+</pre>
+<h3 id="Note" name="Note">Note</h3>
+<p>Alcune combinazioni di tasti potrebbero produrre degli eventi ma non produrre alcun carattere (per esempio CTRL+b). Quando questo accade, <code>isChar</code> restituisce <code>false</code>.</p>
+<p><b>Attenzione:</b> attualmente <code>isChar</code> è afflitto da un <a class="link-https" href="https://bugzilla.mozilla.org/show_bug.cgi?id=312552">bug</a>, a causa del quale il risultato è sempre <code>false</code>. Gli sviluppatori di Mozilla potrebbero correggere questo bug, ma potrebbero anche decidere di eliminare questa proprietà non standard.</p>
+<h3 id="Specifiche" name="Specifiche">Specifiche</h3>
+<p>Non è parte di alcuna specifica.</p>
+<p>{{ languages( { "en": "en/DOM/event.isChar", "pl": "pl/DOM/event.isChar" } ) }}</p>