StylePropertyMapReadOnly: size 属性
size
是 StylePropertyMapReadOnly
接口的只读属性,它返回一个包含 StylePropertyMapReadOnly
对象大小的无符号长整数。
值
无符号长整数。
示例
这里我们使用 size 属性来返回按钮元素 computedStyleMap
中的总条目数。
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
规范
规范 |
---|
CSS Typed OM 第 1 级 # dom-stylepropertymapreadonly-size |
浏览器兼容性
BCD 表格仅在浏览器中加载