5

如何获取 DOM 中两个元素之间的距离?

我正在考虑使用getBoundingClientRect,但我看不到如何使用它来计算两个元素之间的距离。因此,例如,a 与 . 的距离有多近。

4

1 回答 1

9

假设你有一个带有 iddiv1的 div 和一个带有id 的 div div2。您可以通过一些简单的数学计算从div1' 中心到' 中心的距离(以像素为单位) ......div2

// get the bounding rectangles
var div1rect = $("#div1")[0].getBoundingClientRect();
var div2rect = $("#div2")[0].getBoundingClientRect();

// get div1's center point
var div1x = div1rect.left + div1rect.width/2;
var div1y = div1rect.top + div1rect.height/2;

// get div2's center point
var div2x = div2rect.left + div2rect.width/2;
var div2y = div2rect.top + div2rect.height/2;

// calculate the distance using the Pythagorean Theorem (a^2 + b^2 = c^2)
var distanceSquared = Math.pow(div1x - div2x, 2) + Math.pow(div1y - div2y, 2);
var distance = Math.sqrt(distanceSquared);
于 2013-10-29T23:48:24.443 回答