jquery 实现滚动条下拉时无限加载的简单实例

it2022-05-05  132

var lastId=0; //记录每一次加载时的最后一条记录id,跟您的排序方式有关。      var isloading = false ;    $(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 ;      }      }

转载于:https://www.cnblogs.com/tyqing/p/5995509.html

相关资源:各显卡算力对照表!

最新回复(0)