1. 程式人生 > >微信瀏覽器如何禁止iPhone手機上下滑動網頁

微信瀏覽器如何禁止iPhone手機上下滑動網頁

轉自:https://segmentfault.com/q/1010000002977656

禁止 touchstart 的預設事件

$('body').on('touchmove touchstart', function (event) {
    event.preventDefault();
});