问题描述
我正在使用:我滚动滚动加载更多数据,但是在移动Android上无法正常工作,但在台式机浏览器上可以正常工作。
我已经用jquery v1 jquery v2和jquery v3尝试过,这是同样的问题。
我的代码无法在移动设备上运行:
$(window).scroll(function() {
if($(window).scrollTop() == $(document).height() - $(window).height()) {
// ajax call get data from server and append to the div
alert("Here");
}
});
这个也不起作用:
$(window).scroll(function() {
if($(window).scrollTop() == $(document).height() - $(window).height()) {
// ajax call get data from server and append to the div
alert("Here");
}
});
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)