且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

使用jQuery找到两个DIV之间的距离?

更新时间:2023-02-26 20:22:19

类似这样的应用程序:


$ b $ $ $ $ $ $ $'$ f $'。offset()。top - $('。bar')。offset()。top

只要每个类在页面上只有一个元素。

如果它们不是独特的,给这两个元素一个ID和参考。


I have two DIVs that I need to know the calculated browser distance (in height) of them. I have read about the offset feature but the examples were not written for the way I am trying to do this.

Example usage:

<div class="foo"></div>
<div class="bar"></div>

I want to know the distance between these two.

Please help me to find the distance dynamically with jQuery.

Something like this should work:

$('.foo').offset().top - $('.bar').offset().top

As long as each class only has one element on the page.
If they are not unique, give the two elements an ID and reference with that.