我需要获取当前附加元素的兄弟的偏移量。这可能吗?我希望使用类似的东西:
$('.affixed').affix({
offset: {
top: 150,
bottom: function() {
return $(this).siblings('p').offset().top;
}
}
});
但this
只是一个{top:X, bottom:Y}
对象而不是实际元素。我有多个.affixed
需要动态附加的元素。