StylePropertyMapReadOnly: size-Eigenschaft
Die schreibgeschützte size
-Eigenschaft des StylePropertyMapReadOnly
-Interfaces gibt eine vorzeichenlose Ganzzahl zurück, die die Größe des StylePropertyMapReadOnly
-Objekts enthält.
Wert
Eine vorzeichenlose Ganzzahl.
Beispiele
Hier verwenden wir die size-Eigenschaft, um die Gesamtanzahl der Einträge innerhalb der computedStyleMap
der Schaltflächenelemente zurückzugeben.
js
// grab our element
const buttonEl = document.querySelector("button");
// we can retrieve all computed styles with `computedStyleMap`
const allComputedStyles = buttonEl.computedStyleMap();
// use size to get the total styles within the map
const amountStyles = allComputedStyles.size;
console.log(amountStyles); // logs 338
Spezifikationen
Specification |
---|
CSS Typed OM Level 1 # dom-stylepropertymapreadonly-size |
Browser-Kompatibilität
BCD tables only load in the browser