我想禁用 web 应用程序中的 iOS 过度滚动,但仍允许滚动正文。
$(document).on('touchmove', function(e) {
e.preventDefault();
});
完全禁用滚动(正如人们所期望的那样)。
有没有办法做我想做的事?
我想禁用 web 应用程序中的 iOS 过度滚动,但仍允许滚动正文。
$(document).on('touchmove', function(e) {
e.preventDefault();
});
完全禁用滚动(正如人们所期望的那样)。
有没有办法做我想做的事?
我有几乎同样的问题。这应该可以帮助您:
// Disable overscroll / viewport moving on everything but scrollable divs
$('body').on('touchmove', function (e) {
if (!$('.scrollable').has($(e.target)).length) e.preventDefault();
});
document.body.addEventListener('touchmove',function(e){
if(!$(e.target).hasClass("scrollable")) {
e.preventDefault();
}
});
试试这个我刚通过谷歌进来的