标签: javascript jquery html css
我有一个应用程序,对于iOS,某个组件是可滚动的。我不需要检查为什么会发生这种情况,我想暂时禁用该元素上的touchmove。
我尝试过类似的事情:
$(element).bind('touchmove', function(event) { event.preventDefault(); }
但这并不能阻止触摸滚动。如何禁用touchmove?