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的滚动条,但让它在屏幕上保持可见?以 facebook 的剧院模式为例:
body
这是您将需要强制滚动条的唯一 CSS:
html{ overflow-y: scroll; }
如果内容小于窗口,滚动条将被禁用,因此您必须使用一些脚本将主体调整为至少1px小于窗口高度:
1px
$("body").css({ "height" : ($(window).height() - 1) + 'px', "overflow": "hidden" });
overflow-y: scroll;
这应该是你正在寻找的。