微信浏览器如何禁止iPhone手机上下滑动网页

代码:

/*去掉iphone手机滑动默认行为*/
$('body').on('touchmove', function (event) {
    event.preventDefault();
});

 

posted @ 2014-08-27 10:30  Master HaKu  阅读(24834)  评论(1编辑  收藏  举报