Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web-APIs
  3. StylePropertyMapReadOnly
  4. size

Dieser Inhalt wurde automatisch aus dem Englischen übersetzt, und kann Fehler enthalten.Erfahre mehr über dieses Experiment.

View in EnglishAlways switch to English

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.

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 338

Spezifikationen

Specification
CSS Typed OM Level 1
# dom-stylepropertymapreadonly-size

Browser-Kompatibilität

Help improve MDN

Learn how to contribute Diese Seite wurde automatisch aus dem Englischen übersetzt.

[8]ページ先頭

©2009-2025 Movatter.jp