$(window).scroll(function () { if ($(document).scrollTop() >= $(document).height() - $(window).height()) { //通过修改大于小于号实现 上拉下拉 loadMemberList();// 你要执行的方法; } }); })