CommandEvent: command-Eigenschaft

Experimentell: Dies ist eine experimentelle Technologie
Überprüfen Sie die Browser-Kompatibilitätstabelle sorgfältig, bevor Sie diese produktiv verwenden.

Die schreibgeschützte command-Eigenschaft des CommandEvent-Interfaces gibt einen String zurück, der den Wert der command-Eigenschaft zum Zeitpunkt der Ereignisauslösung enthält.

Wert

Ein String.

Beispiele

Im folgenden einfachen Beispiel haben wir einen Ereignislistener eingerichtet, der auf das "show-modal"-Kommando hört:

js
document.body.addEventListener(
  "command",
  (event) => {
    const theAction = event.command;

    if (theAction == "show-modal") {
      console.log("Showing modal dialog");
    }
  },
  { capture: true },
);

Spezifikationen

No specification found

No specification data found for api.CommandEvent.command.
Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch