获取元素相对于其父元素的偏移位置

获取相基于父级的元素的顶部/左侧的偏移坐标


使用offsetLeftoffsetTop查找元素相对于offsetParent容器的像素位置(单位为px)


var el = document.querySelector('div');
console.log(el.offsetLeft, el.offsetTop);