阻止iphone网页晃动

(function () {
    //禁止ios的浏览器容器弹性滑动
    $(window).on('scroll.elasticity', function (e) {
        e.preventDefault();
	}).on('touchmove.elasticity', function (e) {
            e.preventDefault();
        });	
})();


你可能感兴趣的:(阻止iphone网页晃动)