Dieser Inhalt wurde automatisch aus dem Englischen übersetzt, und kann Fehler enthalten. Erfahre mehr über dieses Experiment.

View in English Always switch to English

KeyboardEvent: altKey-Eigenschaft

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨Juli 2015⁩.

Die schreibgeschützte Eigenschaft KeyboardEvent.altKey ist ein boolescher Wert, der anzeigt, ob die alt-Taste (Option oder auf macOS) gedrückt war (true) oder nicht (false), als das Ereignis auftrat.

Wert

Ein boolescher Wert.

Beispiele

html
<p> Press any character key, with or without holding down the ALT key.<br /> You can also use the SHIFT key together with the ALT key. </p> <pre id="output"></pre> 
js
const output = document.getElementById("output"); function showChar(e) { output.textContent = `Key KeyDown: "${e.key}" ALT key KeyDown: ${e.altKey} `; } document.addEventListener("keydown", showChar); 

Spezifikationen

Specification
UI Events
# dom-keyboardevent-altkey

Browser-Kompatibilität

Siehe auch