jQuery Mobile 互动版

scrollstart与scrollstop

jQuery Mobile提供了两种滚屏事件:滚屏开始(scrollstart)时触发和滚动结束(scrollstop)时触发。

$(document).on("scrollstart",function(){
    alert("开始滚动!");
});
  练习一下scrollstop事件!