解决方法
解决方法,在body上绑定一个空的touchstart事件即可。
document.body.addEventListener(‘touchstart’, function(){ });
或者在直接写在body上
<body ontouchstart=""></body>
解决方法
解决方法,在body上绑定一个空的touchstart事件即可。
document.body.addEventListener(‘touchstart’, function(){ });
或者在直接写在body上
<body ontouchstart=""></body>