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