手机端前端分页滚动及移除滚动

最近写分页遇到滚动事件未移除的bug,简单的处理了一下,处理如下(加粗文字)

$(document).on("scroll",function(){

var count = 1;

if ( $(window).scrollTop() >= $(document).height() - $(window).height() )   {

//添加异步分页代码

}

离开页面时移除滚动事件

$(document).on("pageremove","#scrollBack",function(){

$(document).off("scroll");

});

scrollBack代表

<div data-role="page"  id="scrollBack">

...

</div>

猜你喜欢

转载自blog.csdn.net/qq_21299835/article/details/79505963