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.
我正在使用 Jquery 灯箱弹出类型在点击页面上显示数据。非常基本:当不使用弹出窗口时,它是隐藏的,然后在单击链接时可见。
问题是当数据弹出很长时,即使隐藏它也会拉伸页面,在我的页面底部留下一堆空白。
如何让隐藏的弹出窗口不伸展我的页面?
你可以用css解决它:设置高度和宽度,然后设置overflow:hidden或滚动或自动或设置display:none
overflow:hidden
display:none
并且使用 jquery 你可以隐藏你的元素:$(element).hide()
$(element).hide()