我正在尝试在我正在使用 Coldfusion 开发的网站上设置无限滚动,我是 javascript 和 jquery 的新手,所以我遇到了一些问题。为了使用无限滚动插件,我是否需要在我的网站上进行分页,或者有没有办法做到这一点?
7 回答
你不需要无限滚动插件。要检测滚动何时到达页面末尾,您可以使用 jQuery
$(window).scroll(function () {
if ($(window).scrollTop() >= $(document).height() - $(window).height() - 10) {
//Add something at the end of the page
}
});
JsFiddle 上的演示
我正在使用 Hussein 对 AJAX 请求的回答。我修改了代码以在 300 像素而不是 10 像素触发,但它开始导致我的追加在 AJAX 请求完成之前成倍增加,因为滚动调用在 300 像素范围内比在 10 像素范围内更频繁地触发。
为了解决这个问题,我添加了一个触发器,它会在成功加载 AJAX 时翻转。我的代码看起来更像这样:
var scrollLoad = true;
$(window).scroll(function () {
if (scrollLoad && $(window).scrollTop() >= $(document).height() - $(window).height() - 300) {
scrollLoad = false;
//Add something at the end of the page
}
});
然后在我的 AJAX 响应中,我设置scrollLoad
为true
.
我在 Hussein 的小示例的基础上构建了一个 jQuery 小部件。它支持 localStorage 来临时保存附加的结果,并且它具有暂停功能以每隔一段时间停止附加,需要单击才能继续。
试试看:
$(function(){
$(window).scroll(function(){
if($(document).height()<=$(window).scrollTop()+$(window).height()+100){
alert('end of page');
}
});
});
有人要求解释,所以这里是解释
这里$(document).height()-->是整个文档的高度。大多数情况下,这等于当前文档的元素。
$(window).height()--> 是窗口(浏览器)的高度,表示您在浏览器上看到的任何内容的高度。
$(window).scrollTop()-->Element.scrollTop 属性获取或设置元素内容向上滚动的像素数。元素的 scrollTop 是元素顶部到其最顶部可见内容的距离的度量。当元素内容不生成垂直滚动条时,其 scrollTop 值默认为 0。
$(document).height()<=$(window).scrollTop()+$(window).height()+100
添加 $(window).scrollTop() 和 $(window).height() 现在检查结果是否等于您的文档高度。如果相等,则表示您到达了末尾。我们也添加了 100,因为我想在文档底部的 100 像素之前检查(注意 <= 在条件下)
如果我错了,请纠正我
我有同样的问题,但没有找到适合我需要的插件。所以我写了以下代码。此代码通过使用 ajax 和分页获取数据将模板附加到元素。为了检测用户何时滚动到 div 的底部,我使用了以下条件:
var t = $("#infiniteContent").offset().top;
var h = $("#infiniteContent").height();
var ws = $(window).scrollTop();
var dh = $(document).height();
var wh = $(window).height();
if (dh - (wh + ws) < dh - (h + t)) {
//now you are at bottom of #infiniteContent element
}
$(document).ready(function(){
$.getJSON("https://jsonplaceholder.typicode.com/comments", { _page: 1, _limit:3 }, function (jsonre) {
appendTemplate(jsonre,1);
});
});
function appendTemplate(jsonre, pageNumber){
//instead of this code you can use a templating plugin like "Mustache"
for(var i =0; i<jsonre.length; i++){
$("#infiniteContent").append("<div class='item'><h2>"+jsonre[i].name+"</h2><p>"+jsonre[i].body+"</p></div>");
}
if (jsonre.length) {
$("#infiniteContent").attr("data-page", parseInt(pageNumber)+1);
$(window).on("scroll", initScroll);
//scroll event will not trigger if window size is greater than or equal to document size
var dh = $(document).height() , wh = $(window).height();
if(wh>=dh){
initScroll();
}
}
else {
$("#infiniteContent").attr("data-page", "");
}
}
function initScroll() {
var t = $("#infiniteContent").offset().top;
var h = $("#infiniteContent").height();
var ws = $(window).scrollTop();
var dh = $(document).height();
var wh = $(window).height();
if (dh - (wh + ws) < dh - (h + t)) {
$(window).off('scroll');
var p = $("#infiniteContent").attr("data-page");
if (p) {
$.getJSON("https://jsonplaceholder.typicode.com/comments", { _page: p, _limit:3 }, function (jsonre) {
appendTemplate(jsonre, p);
});
}
}
}
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<div id="infiniteContent"></div>
如果你有一个可滚动的元素,比如带有滚动溢出的 div,但没有可滚动的文档/页面,你可以采用这种方式。
$(function () {
var s = $(".your-scrollable-element");
var list = $("#your-table-list");
/* On element scroll */
s.scroll(function () {
/* The scroll top plus element height equals to table height */
if ((s.scrollTop() + s.height()) == list.height()) {
/* you code */
}
});
});
我使用 Hussein 和 Nick 的想法编写了这个函数,但我希望它对回调使用Promise。如果将 div 发送到选项对象中,我还希望无限滚动区域位于固定 div 上,而不仅仅是窗口。在我下面的第二个链接中有一个例子。如果你想支持旧版浏览器,我建议使用像Q这样的 Promise 库。cb 方法可能是也可能不是一个承诺,无论如何它都会起作用。
它是这样使用的:
html
<div id="feed"></div>
js
var infScroll = infiniteScroll({
cb: function () {
return doSomethingPossiblyAnAJAXPromise();
}
});
如果您希望 Feed 暂时停止,您可以在 cb 方法中返回 false。如果您已经到达提要的末尾,这很有用。可以通过调用infiniteScroll的返回对象方法'setShouldLoad'并传入true和example来再次启动它,以配合上面的代码。
infScroll.setShouldLoad(true);
无限滚动的功能是这样的
function infiniteScroll (options) {
// these options can be overwritten by the sent in options
var defaultOptions = {
binder: $(window), // parent scrollable element
loadSpot: 300, //
feedContainer: $("#feed"), // container
cb: function () { },
}
options = $.extend(defaultOptions, options);
options.shouldLoad = true;
var returnedOptions = {
setShouldLoad: function (bool) { options.shouldLoad = bool; if(bool) { scrollHandler(); } },
};
function scrollHandler () {
var scrollTop = options.binder.scrollTop();
var height = options.binder[0].innerHeight || options.binder.height();
if (options.shouldLoad && scrollTop >= (options.binder[0].scrollHeight || $(document).height()) - height - options.loadSpot) {
options.shouldLoad = false;
if(typeof options.cb === "function") {
new Promise(function (resolve) {resolve();}).then(function() { return options.cb(); }).then(function (isNotFinished) {
if(typeof isNotFinished === "boolean") {
options.shouldLoad = isNotFinished;
}
});
}
}
}
options.binder.scroll(scrollHandler);
scrollHandler();
return returnedOptions;
}