JS获取 某一个DOM元素距视窗的位置信息
2019-01-14 本文已影响0人
R_X
我们可以调用getBoundingClientRect
方法,来获取,一个Dom元素距离视窗的各种信息。
详见:https://developer.mozilla.org/zh-CN/docs/Web/API/Element/getBoundingClientRect
var aDiv = document.getElementById('aDiv');
console.log(aDiv.getBoundingClientRect());
// console.log 的信息:
{
bottom: 1158
height: 45
left: 0
right: 750
top: 1113
width: 750
x: 0
y: 1113
}