DOMTokenList: supports()-Methode

Baseline Widely available

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

Die supports()-Methode der Schnittstelle DOMTokenList gibt true zurück, wenn ein gegebener token in den unterstützten Tokens des zugehörigen Attributs enthalten ist. Diese Methode soll die Funktionsüberprüfung unterstützen.

Syntax

js
supports(token)

Parameter

token

Ein String, der den abzufragenden Token enthält.

Rückgabewert

Ein boolescher Wert, der angibt, ob der Token gefunden wurde.

Beispiel

js
const iframe = document.getElementById("display");

if (iframe.sandbox.supports("an-upcoming-feature")) {
  // support code for mystery future feature
} else {
  // fallback code
}

if (iframe.sandbox.supports("allow-scripts")) {
  // instruct frame to run JavaScript
  //
  // (NOTE: This feature is well-supported; this is just an example!)
  //
}

Spezifikationen

Specification
DOM Standard
# ref-for-dom-domtokenlist-supports①

Browser-Kompatibilität

BCD tables only load in the browser