首页 > 代码库 > [原]js获取dom元素的实际位置及相对坐标
[原]js获取dom元素的实际位置及相对坐标
关键API:
Element.getBoundingClientRect()
mdn:https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect
用法:
var rect = element.getBoundingClientRect(); console.log(rect.top, rect.right, rect.bottom, rect.left);
获取相对位置:
var bodyRect = document.body.getBoundingClientRect(), elemRect = element.getBoundingClientRect(), offset = elemRect.top - bodyRect.top; alert(‘Element is ‘ + offset + ‘ vertical pixels from <body>‘);
参考网址:http://stackoverflow.com/questions/442404/retrieve-the-position-x-y-of-an-html-element
我只是个搬运工,一起学习了~
[原]js获取dom元素的实际位置及相对坐标
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。