Dieser Inhalt wurde automatisch aus dem Englischen übersetzt, und kann Fehler enthalten.Erfahre mehr über dieses Experiment.
StylePropertyMapReadOnly: size-Eigenschaft
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Die schreibgeschütztesize-Eigenschaft desStylePropertyMapReadOnly-Interfaces gibt eine vorzeichenlose Ganzzahl zurück, die die Größe desStylePropertyMapReadOnly-Objekts enthält.
In diesem Artikel
Wert
Eine vorzeichenlose Ganzzahl.
Beispiele
Hier verwenden wir die size-Eigenschaft, um die Gesamtanzahl der Einträge innerhalb dercomputedStyleMap der Schaltflächenelemente zurückzugeben.
js
// grab our elementconst 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 mapconst amountStyles = allComputedStyles.size;console.log(amountStyles); // logs 338Spezifikationen
| Specification |
|---|
| CSS Typed OM Level 1> # dom-stylepropertymapreadonly-size> |