1.在mounted生命周内
// 在页面挂载阶段,监听页面的滚动行为 window.addEventListener("scroll", this.handleScroll, true);
2 handleScroll(e) {
// 变量scrollTop 为当前页面的滚动条纵坐标位置
let scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
// 变量windowHeight 是可视区的高度
let windowHeight = document.documentElement.clientHeight || document.body.clientHeight;
// 变量scrollHeight 是滚动条的总高度
let scrollHeight = document.documentElement.scrollHeight || document.body.scrollHeight;
if (scrollTop + windowHeight == scrollHeight) {
这里面写逻辑
}
}