阻止浏览器回弹效果

document.body.addEventListener('touchmove', function (e) {
    e.preventDefault(); //阻止默认的处理方式(阻止下拉滑动的效果)
}, { passive: false });
原文地址:https://www.cnblogs.com/shiazhen/p/12890458.html