jQuery无限滚动触发
我正在开发一个使用 jQuery 搜索网站的 Google Chrome 扩展,但当页面使用“无限滚动”时遇到问题。知道刷新页面时如何触发方法吗?也许通过捕获 ajax 响应?
I'm working on a Google Chrome extension that searches the website using jQuery, but am having a problem when a page uses 'infinite scrolling'. Any idea how I could trigger a method when the page is refreshed? Maybe by catching ajax responses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的意思是尝试加载除非向下滚动否则不可见的内容,那么您可以通过直接调用该函数(如果它在您的范围内已知且可见)来触发内容加载,或者您可以向下滚动并在页面加载后使用 scrollTop 进行备份,并将其设置为文档的高度。
If you mean catch as in attempt to load the content that is otherwise invisible unless you scroll down, then you could trigger the content to load either by directly calling the function (if it is known and visible in your scope) or you can scroll down and back up once the page is loaded using scrollTop and setting it to the height of the document.