diff options
author | Florian Dieminger <me@fiji-flo.de> | 2021-02-11 18:24:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 18:24:42 +0100 |
commit | aaeeb9abf350ff53bc52223c6a2f6a15d755ae07 (patch) | |
tree | 3b8bb1f4d37a784a941ec5956973b569d47a3da9 /files/it/web/api/uievent/ischar/index.html | |
parent | eac9bdfdfb67b7748f4ffe6931a87b471ef4f2b5 (diff) | |
parent | e7651b26abb2031118b797bd4a4d707aa7f2e9b6 (diff) | |
download | translated-content-aaeeb9abf350ff53bc52223c6a2f6a15d755ae07.tar.gz translated-content-aaeeb9abf350ff53bc52223c6a2f6a15d755ae07.tar.bz2 translated-content-aaeeb9abf350ff53bc52223c6a2f6a15d755ae07.zip |
Merge pull request #40 from fiji-flo/unslugging-it
Unslugging it
Diffstat (limited to 'files/it/web/api/uievent/ischar/index.html')
-rw-r--r-- | files/it/web/api/uievent/ischar/index.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/files/it/web/api/uievent/ischar/index.html b/files/it/web/api/uievent/ischar/index.html new file mode 100644 index 0000000000..6440856995 --- /dev/null +++ b/files/it/web/api/uievent/ischar/index.html @@ -0,0 +1,31 @@ +--- +title: event.isChar +slug: Web/API/UIEvent/isChar +tags: + - DOM + - Gecko + - Reference_del_DOM_di_Gecko + - Tutte_le_categorie +translation_of: Web/API/UIEvent/isChar +original_slug: Web/API/Event/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> |