// 禁止滑动 stopLoop(){ var top=$(window).scrollTop();//这是当前滚动的页面滚动条位置 $("body").css({ "position":"fixed", "width":"100%", "top":top*-1 //此处为当前需要定住的位置 }); }, // 允许滑动 startLoop(){ $("body").css({ "position":"static" }); },