移动端下拉加载

Posted 小哆啦呢铜锣烧

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端下拉加载相关的知识,希望对你有一定的参考价值。

/**
* 初始化下拉加载
*/
function scrollInit(){
var bottom = 50;
//下拉加载[待定问题 绑定dom元素不对]
$(‘#tapContainer‘).off(‘scroll‘).on(‘scroll‘,function () {  
 if($(‘#templateContainer‘).length < 1){
return;
}
var hei = $(‘#templateContainer‘).height() ;
var bodyHei = $(document).height(); 
var offsetTop = Math.abs($(‘#templateContainer‘).offset().top);
hei - bodyHei - offsetTop;
if ( bottom > (hei - bodyHei - offsetTop)) {                   
reservation();                  
}   
}); 
}

 

以上是关于移动端下拉加载的主要内容,如果未能解决你的问题,请参考以下文章