StylePropertyMapReadOnly: forEach()-Methode
Die StylePropertyMapReadOnly.forEach()
-Methode führt eine bereitgestellte Funktion einmal pro Element des StylePropertyMapReadOnly
aus.
Syntax
forEach(callbackFn)
forEach(callbackFn, thisArg)
Parameter
callbackFn
-
Die Funktion, die für jedes Element ausgeführt wird und drei Argumente entgegennimmt:
currentValue
-
Der Wert des aktuell verarbeiteten Elements.
index
Optional-
Der Index des aktuell verarbeiteten Elements.
array
Optional-
Das
StylePropertyMapReadOnly
, auf demforEach()
aufgerufen wird.
thisArg
Optional-
Wert, der als
this
(d.h. die ReferenzObject
) beim Ausführen voncallback
verwendet wird.
Rückgabewert
Keiner (undefined
).
Beispiele
Hier ist ein Beispiel für die Verwendung von forEach()
auf einem abgerufenen Element.computedStyleMap()
.
// get a button element
const buttonEl = document.querySelector(".example");
// we can retrieve all computed styles with `computedStyleMap`
const allComputedStyles = buttonEl.computedStyleMap();
// forEach will allow us to run code over each prop/val pair
allComputedStyles.forEach((elem, index, arr) => {
// code to run for each pair
});
Spezifikationen
No specification found
No specification data found for api.StylePropertyMapReadOnly.forEach
.
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.
Browser-Kompatibilität
BCD tables only load in the browser