// 禁止滑动 stopLoop(){ var top=$(window).scrollTop();//这是当前滚动的页面滚动条位置 $("body").css({ "position":"fixed", "width":"100%", "top":top*-1 //此处为当前需要定住的位置 }); }, // 允许滑动 startLoop(){ $("body").css({ "position":"static" }); }, 相关文章: 2022-01-21 2021-11-26 2021-12-05 2022-01-16 2022-01-27 2021-11-27 2020-06-01 2022-02-09