jQuery Mobile 滚动事件
jQuery Mobile 提供两种滚动事件:在滚动开始和当滚动结束。
jQuery Mobile Scrollstart
scrollstart 事件在用户开始滚动页面时被触发:
实例
$(document).on("scrollstart",function(){
alert("开始滚动!");
});
注释:iOS 设备会在滚动事件发生时冻结 DOM 操作,这意味着当用户滚动时无法改变任何事物。不过 jQuery 团队正致力于解决该问题。
jQuery Mobile Scrollstop
scrollstop 事件在用户停止滚动页面时被触发:
实例
$(document).on("scrollstop",function(){
alert("结束滚动!");
});