blob: 24ea2289e00d3efc78dc5f36f2fe79642d2c6c49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
---
title: StylePropertyMapReadOnly.forEach()
slug: Web/API/StylePropertyMapReadOnly/forEach
tags:
- API
- CSS Typed Object Model API
- 実験的
- Houdini
- メソッド
- リファレンス
- StylePropertyMapReadOnly
- forEach()
browser-compat: api.StylePropertyMapReadOnly.forEach
translation_of: Web/API/StylePropertyMapReadOnly/forEach
---
{{APIRef("CSS Typed Object Model API")}}{{SeeCompatTable}}
**`StylePropertyMapReadOnly.forEach()`** メソッドは、指定された関数を {{domxref('StylePropertyMapReadOnly')}} のそれぞれの要素に対して 1 回ずつ呼び出します。
## 構文
```js
StylePropertyMapReadOnly.forEach(function callback(currentValue[, index[, array]]) {
//コード
}[, thisArg]);
```
### 引数
- `callback`
- : それぞれの要素に対して呼び出す関数であり、 3 つの引数を取ります。
- `currentValue`
- : 処理しようとしている現在の要素の値です。
- `index`{{optional_inline}}
- : 処理しようとしている現在の要素の位置です。
- `array`{{optional_inline}}
- : `forEach()` が呼び出された StylePropertyMapReadOnly です。
- `thisArg` {{Optional_inline}}
- : `callback` を実行するときに **`this`** として使用する値(すなわち、 `Object` への参照)です。
### 返値
{{jsxref("undefined")}} です。
## 例
こちらは、 `forEach()` を {{domxref('Element.computedStyleMap()')}} の結果に対して使用する例です。
```js
// button 要素を取得
const buttonEl = document.querySelector('.example');
// `computedStyleMap` ですべての計算済みスタイルが取得できます
const allComputedStyles = buttonEl.computedStyleMap();
// forEach ですべてのプロパティ/値の組に対してコードを実行することができます
allComputedStyles.forEach((elem, index, arr) => {
// code to run for each pair
})
```
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
|