首页 > 移动平台 > 详细

移动端下拉加载

时间:2017-08-31 18:56:53      阅读:248      评论:0      收藏:0      [点我收藏+]
/**
* 初始化下拉加载
*/
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();                  
}   
}); 
}

 

移动端下拉加载

原文:http://www.cnblogs.com/shuaitong/p/7459575.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!