直接代码:
$(document).ready(function(){
$(window).scroll(function() {
var h = $(document).scrollTop();
var heigth = $(document).height() - $(window).height();
if (heigth - h <= 3 ) {
alert('加载');
}
});
})
可以根据实际应用来再修改,配合接口来调数据!可加上分页等!
发布于2017-08-10 1,820次阅读
直接代码:
$(document).ready(function(){
$(window).scroll(function() {
var h = $(document).scrollTop();
var heigth = $(document).height() - $(window).height();
if (heigth - h <= 3 ) {
alert('加载');
}
});
})
可以根据实际应用来再修改,配合接口来调数据!可加上分页等!
Comments | NOTHING