document.querySelector(
‘body‘
).addEventListener(
‘touchmove‘
,
function
(e) {
e.preventDefault();
})
此类事件是手机touchmove默认事件行为,可以通过js代码禁止默认事件:
标签:blog pac sel 默认事件 通过 line move chm ace
document.querySelector(
‘body‘
).addEventListener(
‘touchmove‘
,
function
(e) {
e.preventDefault();
})
标签:blog pac sel 默认事件 通过 line move chm ace
原文地址:https://www.cnblogs.com/zhouyx/p/8145182.html