StylePropertyMapReadOnly.values()
Experimental: これは実験的な機能です。
本番で使用する前にブラウザー互換性一覧表をチェックしてください。
StylePropertyMapReadOnly.values()
メソッドは、 StylePropertyMapReadOnly
オブジェクトのそれぞれのインデックスに対応する値を含む新しい配列イテレーターを返します。
構文
js
StylePropertyMapReadOnly.values();
引数
なし。
返値
新しい Array
です。
例
この例では、 values()
メソッドを使用して Element.computedStyleMap()
の中にある値にアクセスすることができます。
js
// button 要素を取得
const buttonEl = document.querySelector("button");
// すべての計算済みスタイルを `computedStyleMap` で受け取る
const allComputedStyles = buttonEl.computedStyleMap();
// values は CSS 値の反復可能なリストを返す
const vals = allComputedStyles.values();
console.log(vals.next().value); // CSSStyleValue を返す
仕様書
No specification found
No specification data found for api.StylePropertyMapReadOnly.values
.
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