1. 程式人生 > >移動端下拉加載

移動端下拉加載

ont mat tap fun ati code contain eight nbsp

/**
* 初始化下拉加載
*/
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(); } }); }

移動端下拉加載