去掉iphone手机滑动默认行为

/*去掉iphone手机滑动默认行为*/
$('body').on('touchmove', function (event) {
    event.preventDefault();
});
原文地址:https://www.cnblogs.com/loverows/p/4081250.html