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.
我在这里有一个示例 html、查询、css 布局。当我点击隐藏链接然后它隐藏浏览器滚动条时它现在做了什么(这很好,我想要这个效果)。但是当滚动条消失时,p 标签中的内容或文本会向右延伸,这是我不想要的。如何隐藏滚动条并将所有内容保留在原始位置?
请在此处查看我的代码
将宽度设置为窗口宽度而不是 100%:
$("p").css("width", $(window).width());
http://jsfiddle.net/zDTnY/5/