且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

禁用iOS Overscroll,但允许正文滚动

更新时间:2022-10-15 22:36:54

I had pretty much the same issue. This should help you:

// Disable overscroll / viewport moving on everything but scrollable divs
 $('body').on('touchmove', function (e) {
         if (!$('.scrollable').has($(e.target)).length) e.preventDefault();
 });