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.
如何在不禁用移动设备窗口内可滚动内容部分的滚动的情况下禁用网页正文的滚动?
如果你只是想禁用 body 的滚动,你可以在 Css 中添加
body { width: 100%; height: 100%; overflow: hidden; }
那么你的身体上什么都不会滚动,但是你身体中带有滚动内容的部分仍然可以滚动。