StylePropertyMapReadOnly.keys()

Experimental: これは実験的な機能です。
本番で使用する前にブラウザー互換性一覧表をチェックしてください。

StylePropertyMapReadOnly.keys() メソッドは、 StylePropertyMapReadOnly の各項目のキーを含む新しい配列イテレーターを返します。

構文

js
StylePropertyMapReadOnly.keys();

引数

なし。

返値

新しい Array です。

この例では、 keys() メソッドを使用して Element.computedStyleMap() の中にあるプロパティにアクセスすることができます。

js
// button 要素を取得
const buttonEl = document.querySelector("button");

// すべての計算済みスタイルを `computedStyleMap` で受け取る
const allComputedStyles = buttonEl.computedStyleMap();

// keys はプロパティの反復可能なリストを返す
const props = allComputedStyles.keys();
console.log(props.next().value); // align-content を返す

仕様書

No specification found

No specification data found for api.StylePropertyMapReadOnly.keys.
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.

ブラウザーの互換性

BCD tables only load in the browser