禁止手机浏览器左右滑屏 后退 前进

$('body').on('touchmove','.slidebg',function () {
    $(document.body).on('touchmove.prevUC', function(e) {
        e.preventDefault();
    });
});
$('body').on('touchend','.slidebg',function () {
    $(document.body).off('touchmove.prevUC');
});
原文地址:https://www.cnblogs.com/web-fusheng/p/7597613.html