getBoundingClientRect return 在什么单位?
What unit does getBoundingClientRect return in?
我知道 getBoundingClientRect()
returns 是 ClientRect
或 DOMRect
类型的对象,并且每个对象通常具有 x
、[=15= 等属性]、width
、height
等。如果你 typeof
这些属性,你会得到 Number
.
所以我的问题是,Number
是多少?像素 px
、点 pt
、百分比 %
等都是可能的答案。我认为它是像素,但我对此并不完全确定。谁能证实这一点?
感谢确认答案:
getBoundingClientRect()
returns 指定 像素 (px) 数量的 Number
数组 .
我知道 getBoundingClientRect()
returns 是 ClientRect
或 DOMRect
类型的对象,并且每个对象通常具有 x
、[=15= 等属性]、width
、height
等。如果你 typeof
这些属性,你会得到 Number
.
所以我的问题是,Number
是多少?像素 px
、点 pt
、百分比 %
等都是可能的答案。我认为它是像素,但我对此并不完全确定。谁能证实这一点?
感谢
getBoundingClientRect()
returns 指定 像素 (px) 数量的 Number
数组 .