DOMTokenList: supports() メソッド

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.

supports()DOMTokenList インターフェイスのメソッドで、渡されたトークンが関連する属性で対応しているトークンに含まれていれば true を返します。このメソッドは機能に対応しているかを検出するためのものです。

構文

js
supports(token)

引数

token

問い合わせるトークンが入った文字列です。

返値

論理値で、トークンが見つかったかどうかを返します。

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!)
  //
}

仕様書

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

ブラウザーの互換性

BCD tables only load in the browser