码迷,mamicode.com
首页 > Web开发 > 详细

jQuery Mobile滚动事件

时间:2015-01-20 17:18:40      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

当用户在设备上滚动页面时,jQuery Mobile提供了滚动事件进行监听。其中首先介绍的是scrollstart事件,该事件发生在页面滚动开始时,如下代码:

 $(document).ready(function(){

  $(body).bind(scrollstart, function(event) {

  //相关的滚动开始代码

  });

  });

同样,当滚动停止后,则可以用scrollstop事件进行监听,如下代码:

 $(document).ready(function(){

  $(body).bind(scrollstop, function(event) {

  //相关滚动停止的代码

  });

  });

jQuery Mobile滚动事件

标签:

原文地址:http://www.cnblogs.com/dekevin/p/4236208.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!