在iOS上,似乎如果你有一个函数在带有事件监听器的同一文档中运行onscroll
,onscroll
事件将偶尔发生。
代码如下:
document.getElementById("content").onscroll = function() {
alert("test");
}
$("#content").on('touchmove', function() {
});
预期的行为是滚动完成后触发的onscroll
事件:
http://developer.apple.com/library/ios/#documentation/AppleApplications/Reference/SafariWebContent/HandlingEvents/HandlingEvents.html
有人能想出解决方案吗?我需要检测手指滑动后页面何时停止移动。