在body上绑定一个touchstart事件,空函数就行:
document.body.addEventListener('touchstart', function(){}, false)
或者在body标签上加上ontouchstart=""也可以:
<body ontouchstart="">
2023-01-31 14:51:10
在body上绑定一个touchstart事件,空函数就行:
document.body.addEventListener('touchstart', function(){}, false)
或者在body标签上加上ontouchstart=""也可以:
<body ontouchstart="">