CSSNumericValue: type() 方法
type()
方法是 CSSNumericValue
接口的方法,它返回 CSSNumericValue
的类型,可以是 angle
、flex
、frequency
、length
、resolution
、percent
、percentHint
或 time
之一。
语法
js
type()
参数
无。
返回值
一个 CSSNumericType
对象。
异常
无。
示例
js
let mathSum = CSS.px("23")
.sub(CSS.percent("4"))
.sub(CSS.cm("3"))
.sub(CSS.in("9"));
// Returns an object with the structure: {length: 1, percentHint: "length"}
let cssNumericType = mathSum.type();
规范
规范 |
---|
CSS Typed OM 级别 1 # dom-cssnumericvalue-type |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。