gpt4 book ai didi

angular - 检查用户是否已滚动到 Angular 2 的底部

转载 作者:太空狗 更新时间:2023-10-29 17:00:36 26 4
gpt4 key购买 nike

检查用户是否在没有 jQuery 的 Angular2 中滚动到页面底部的最佳实践是什么?我可以访问我的应用程序组件中的窗口吗?如果不是,我应该检查滚动到页脚组件的底部,我该怎么做?页脚组件上的指令?有人做到了吗?

最佳答案

//你可以使用它。

@HostListener("window:scroll", [])
onScroll(): void {
if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
// you're at the bottom of the page
}
}

关于angular - 检查用户是否已滚动到 Angular 2 的底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38251205/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com