获取到当前元素,然后获取当前元素的高度、滚动条距离顶部高度,滚条高度,从而进行判断。
代码如下:
that.$nextTick(() => {
const el = document.querySelector('.reg-pro-wrap');
const offsetHeight = el.offsetHeight;
el.onscroll = () => {
const scrollTop = el.scrollTop;
const scrollHeight = el.scrollHeight;
if ((offsetHeight + scrollTop) - scrollHeight >= -1) {
// 需要执行的代码
console.log('已滚动到底部')
that.disabled = false;
}
};
});
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。