标签:class blog offset fse 移动端 加载 height bsp scroll
/** * 初始化下拉加载 */ 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(); } }); }
标签:class blog offset fse 移动端 加载 height bsp scroll
原文地址:http://www.cnblogs.com/shuaitong/p/7459575.html