$(function(){
let pageNo = 1 //定义页数
let pageSize = 10 //定义加载条数
showDate() //执行加载数据函数第一页
//滚动条触底判断
$(window).scroll(function(){
let scrollTop = Math.ceil($(this).scrollTop()) //滚动条与顶部的高度
let curHeight = $(this).height() //当前可视页面高度
let totalHeight = $(document).height() //页面的总高度
if(scrollTop+curHeight>=totalHeight){
showDate(pageNo++)
}
})
function showDate() { //加载数据函数 }
})