javascript – 将内容加载为元素滚动到视图中
作者:互联网
我在< div>中有一个搜索结果列表具有静态高度和溢出的元素:auto;在风格.我想只加载前x个搜索结果(例如20),并在用户滚动到包含搜索结果的元素的底部时加载另外x个结果.
任何人都可以向我解释我会怎么做?我找到了一些示例,但所有这些示例都使用整个文档的滚动值,而不是单个< div>.如果重要的话,我正在使用jQuery.
解决方法:
听起来像你想要在接近结尾时检测滚动条的位置. Found this在jquery组上搜索时.如果需要,它建议的解决方案添加一些文档:
$.fn.isNearTheEnd = function() {
// remember inside of $.fn.whatever = function() {}
// this is the jQuery object the function is called on.
// this[0] is DOMElement
return this[0].scrollTop + this.height() >= this[0].scrollHeight;
};
// an example.
$("#content").bind("scroll", function() {
if ($(this).isNearTheEnd()) // load some content
});
标签:jquery,javascript,ajax,dynamic-loading 来源: https://codeday.me/bug/20190622/1259863.html