/*去掉iphone手机滑动默认行为,这个也可以阻止覆盖层下方随着手指滚动而滚动事件*/
$('body').on('touchmove', function (event) {
event.preventDefault();
});
/*去掉iphone手机滑动默认行为,这个也可以阻止覆盖层下方随着手指滚动而滚动事件*/
$('body').on('touchmove', function (event) {
event.preventDefault();
});
本文标题:iphone 手机上下滑动和禁止覆盖层下方滚动事件
本文链接:https://www.haomeiwen.com/subject/uwrctctx.html
网友评论