0
我可以禁用它像这样jQuery的如何禁用移动滚动然后启用它
$('#div1').click(function(){
$(document).bind('touchmove', false);
});
但我想再次启用它,当我点击另一个div我想:
$('#div2').click(function(){
$(document).bind('touchmove', true);
});
我做错了什么?
我从来没有用过这个。
谢谢,我知道这很简单!学习 – user3427494