0
我有一系列在每個頁面上重複10次的文章。該結構是像這樣:使用jQuery查找一個元素相對於另一個元素的距離
<article class="postWrap">
<h2>Title</h2>
<p>Here is text</p>
</article>
我需要找到距離p標籤是對文章的頂部。因此,根據標題的長度,p標籤距文章頂部的距離可能會有所不同。最好的方法很可能是使用offset()
,但我無法正常工作。
感謝
UPDATE:
這裏是工作的代碼我寫的,但我想有是繞了一個更好的辦法:從你的問題假設
$(".postWrap").each(function(){
var postWrap = $(this).offset().top;
var firstP = $(this).find("p:first-of-type").offset().top;
var diff = firstP - postWrap;
var meta = $(this).find(".meta").css({'marginTop' : diff})
});