iOS下如何阻止橡皮筋效果

$(document).ready(function(){
     var stopScrolling = function(event) {
         event.preventDefault();
     }
     document.addEventListener('touchstart', stopScrolling, false);
     document.addEventListener('touchmove', stopScrolling, false);
 });
原文地址:https://www.cnblogs.com/theblogs/p/10539735.html