我正在尝试将元素位置与滚动窗口的滚动位置匹配。
根据使用哪种方法获取这些值,我得到的值不同。
telethon
我尝试了其他方法,例如let oStickyButtonsPosition = $('.listing-sticky-buttons').position();
// returns {top: 1890.796875, left: 15}
let oBodyPosition = $(window).scrollTop();
// returns 1240 at the position where I want to trigger an event
,但它总是返回let oBodyPosition = $('html').offset().top;
有没有办法让元素的位置与窗口的偏移量匹配?