美文网首页JavaScript
JS获取 某一个DOM元素距视窗的位置信息

JS获取 某一个DOM元素距视窗的位置信息

作者: R_X | 来源:发表于2019-01-14 19:40 被阅读0次

我们可以调用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
}

相关文章

网友评论

    本文标题:JS获取 某一个DOM元素距视窗的位置信息

    本文链接:https://www.haomeiwen.com/subject/ttnjdqtx.html