JQ如何禁止某元素的touchmove事件
所属栏目: 网站开发 | 更新时间:2016-8-31 | 阅读:5849 次
//禁止
$("#mask").on('touchmove',function(event) { event.preventDefault(); }, false);
//取消禁止
//禁止
$("#mask").on('touchmove',function(event) { event.preventDefault(); }, false);
//取消禁止