码迷,mamicode.com
首页 > 其他好文 > 详细

getBoundingClientRect()

时间:2016-03-29 10:14:22      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

getBoundingClientRect()

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

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

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

getBoundingClientRect()

标签:

原文地址:http://www.cnblogs.com/qqmao1984/p/5331775.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!