背景:下拉加载使用mui思路:无法限制ios的webview,那我们就想办法区分:这个滑动是不是我们想要的滑动实现:添加监听,进行区分<script> document.body.addEventListener('touchmove', function(e) { if(e._isScroller) return; e.preventDefault(); }, { passive: false });</script>