绑定和解除绑定滚动(使用touchmove或差异解决方案)

时间:2014-05-31 06:18:24

标签: jquery mobile

我有一个简单的问题,我如何在移动设备上禁用和启用滚动一段时间?快速搜索后我找到了这个

  jQuery("body").bind("touchmove",function(e){
        e.preventDefault();
        return false;
  });   

完美的工作,但如何再次启用?我有两个功能

function mobilePopUp()
{
      jQuery("body").bind("touchmove",function(e){
            e.preventDefault();
            return false;
      });  
}

function mobilePopUpClose
{
  // there i want to enable it back
}

绑定的touchmove事件是否可以返回false?我应该用touchmove绑定其他任何东西,知道我应该解开什么吗?也许实现函数名idk。谢谢你的帮助

1 个答案:

答案 0 :(得分:0)

是的,只是unbind

function mobilePopUpClose
{
   jQuery("body").unbind("touchmove");
}