getBoundingClientRect()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了getBoundingClientRect()相关的知识,希望对你有一定的参考价值。

getBoundingClientRect()

    这个方法返回一个矩形对象,包含四个属性:left、top、right和bottom。分别表示元素各边与页面上边和左边的距离。

    var box=document.getElementById(‘box‘);         // 获取元素

    alert(box.getBoundingClientRect().top);         // 元素上边距离页面上边的距离

以上是关于getBoundingClientRect()的主要内容,如果未能解决你的问题,请参考以下文章

Element.getBoundingClientRect()

getBoundingClientRect();不工作..?

js中getBoundingClientRect()方法详解

js中getBoundingClientRect( )方法

JS获得元素相对位置坐标getBoundingClientRect()

getBoundingClientRect用法