jquery微信浏览器阻止页面拖动
作者:互联网
jquery微信浏览器阻止页面拖动
<pre>
function bodyScroll(event) {
event.preventDefault();
}
document.body.addEventListener('touchmove', bodyScroll, false);
/*有些页面可能会影响到里面的触摸事件 可以采取如下方法解除*/
document.body.removeEventListener('touchmove', bodyScroll, false);
</pre>
标签:jquery,body,拖动,微信,event,touchmove,document,bodyScroll,页面 来源: https://www.cnblogs.com/newmiracle/p/11856334.html