<!DOCTYPE html> <html> <head> <title></title> </head> <style type="text/css"> body{ 100%; height: 10000px; background: red; } </style> <body> </body> <script type="text/javascript"> document.body.addEventListener('touchmove', function (e) { e.preventDefault(); //阻止默认的处理方式(阻止下拉滑动的效果) }, {passive: false}); //passive 参数不能省略,用来兼容ios和android </script> </html>
此问题安卓没有 只有ios存在 禁止相关下拉刷新就ok了