aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/api/event/altkey/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/web/api/event/altkey/index.html')
-rw-r--r--files/pl/web/api/event/altkey/index.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/files/pl/web/api/event/altkey/index.html b/files/pl/web/api/event/altkey/index.html
new file mode 100644
index 0000000000..2c8c2f6d9f
--- /dev/null
+++ b/files/pl/web/api/event/altkey/index.html
@@ -0,0 +1,31 @@
+---
+title: event.altKey
+slug: Web/API/Event/altKey
+tags:
+ - DOM
+ - Dokumentacja_Gecko_DOM
+ - Gecko
+ - Wszystkie_kategorie
+translation_of: Web/API/MouseEvent/altKey
+---
+<p>{{ ApiRef() }}</p>
+<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3>
+<p>Wskazuje, czy klawisz &lt;alt&gt; był wciśnięty przy wywołaniu zdarzenia.</p>
+<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3>
+<pre class="eval"><i>bool</i> = event.altKey
+</pre>
+<h3 id="Przyk.C5.82ad" name="Przyk.C5.82ad">Przykład</h3>
+<pre> function goInput(e) {
+ // sprawdza przycisk &lt;alt&gt;
+ if e.altKey {
+ // przekazuje zdarzenie dalej
+ superSizeOutput(e);
+ }
+ else {
+ doOutput(e);
+ }
+ }
+</pre>
+<div class="noinclude">
+  </div>
+<p>{{ languages( { "en": "en/DOM/event.altKey", "ja": "ja/DOM/event.altKey" } ) }}</p>