思路:
通过捕捉浏览器滚动条下拉事件,触发异步加载数据的js方法,实现数据的动态添加。
脚本:
var isloading = false;
$(window).bind("scroll",function () {
if ($(document).scrollTop() + $(window).height()
$(window).bind("scroll",function () {
if ($(document).scrollTop() + $(window).height()
> $(document).height() - 10 && !isloading) {
isloading = true;
getMore();
}
});
function getMore() {
var url = "ajaxdata.aspx"?lastId=" + lastId +"&type=" + 其他参数
$.getJSON(url,function (data) {
var html="";
... ...
$(html).insertAfter($(".elem").last());
isloading = false;
}
}
以上这篇jquery 实现滚动条下拉时无限加载的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/jquery/48240.html