我试图获得元素的绝对浮点宽度,并告诉我需要使用getBoundingClientRect().width
。无论出于何种原因,我都无法从JQuery(版本1.11.3)元素中获得成功......
var rect = $("#id").get(0); //tried this too $("#id")[0]
console.log(rect.getBoundingClientRect());
...返回
rect.getBoundingClientRect is not a function
Wat now ???