Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在网页上使用了一个查询bumpbox插件,我正在研究,但是当我使用它时我仍然可以滚动离开bumpbox。我想知道是否有某种 jquery 方法可以防止网页滚动,或者只是以与用户滚动相同的距离以相反的方式滚动。
没有发布代码很难具体说明,但为了防止滚动,您可以执行以下操作:
$(window).on('scroll', function() { $(this).scrollTop(100); //sets the scrollposition to 100px });
小提琴
实现这一目标的最简单方法
$("body").css("overflow", "hidden");