为什么当中间div隐藏时底部div不会向上移动?
我有三个浮动的 div,它们彼此堆叠在一起。当我使用 $('#divMiddle').hide('slow')
隐藏中间的 div 时,底部的 div 不会立即向上浮动以填充腾出的空间。有时它会在几秒钟后上升,有时则需要近一分钟。我是否缺少 jQuery 或 JavaScript 命令来强制立即发生这种情况?
I have three divs that are float left stacked on top of each other. When I hide the middle div using $('#divMiddle').hide('slow')
, the bottom div does not immediately float up to fill the space that was vacated. Sometimes it moves up after a few seconds and other times it takes almost a minute. Am I missing a jQuery or JavaScript command to force this to happen immediately?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 Firebug 或 chrome,您是否尝试过检查空白区域以健全检查是否没有其他元素并且它正在使用 display:none 与 Visibility ?
If your using Firebug or chrome, have you tried inspecting the empty space to sanity check that there is no other elements and it is using display:none vs. visibility?