所以我有一个div:
<div class="uiGrid"> <div class="trigger"></div> </div>
我想知道触发器到uiGrid的位置,并尝试了这两个:
$('trigger').offset('.uiGrid'); $('trigger').position('.uiGrid');
但没有得到它。偏移量相对于文档,位置是相对于父级而不是指定的元素。
我该怎么做?
谢谢
解决方法
只是做减法你的自我…
var relativeY = $(“elementA”)。offset()。top – $(“elementB”)。offset()。top;