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.
我遇到了 Firefox 问题,并且当使用 slideUp 和 slideDown 显示/隐藏时,字段集的内容与下面的内容重叠。
字段集有一些包含表单元素的段落。当它第一次使用 slideDown 显示时,当字段集滑入视图时,表单内容似乎覆盖了下面的内容。与 slideUp 相反的情况也是如此。
有谁知道为什么会这样?
编辑:在 Chrome、Safari 和 IE 中进行测试,并且在这些浏览器中运行良好。绝对是 FF 特定的。
我有同样的问题。这是因为在 Firefox 中,Fieldset 不受溢出影响:hidden lame...
只需应用以下内容并亲自查看:
fieldset{ height:50px overflow: hidden; }
解决方案...使用 div
$("selector").slideDown('slow',function(){ //call here your slide up functionality here })