我有一个简单的问题,我如何在移动设备上禁用和启用滚动一段时间?快速搜索后我找到了这个
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。谢谢你的帮助
答案 0 :(得分:0)
是的,只是unbind
。
function mobilePopUpClose
{
jQuery("body").unbind("touchmove");
}