这在 FF 和 IE9 上运行良好,但在 IE7 和 8 中失败。
我有两个隐藏的 div,其中包含一个表单。单击按钮后,带有表单的正确 div 将显示在下面。所有这些都可以正常工作,但在 IE7 和 8 中,页脚将与表单重叠,并且不会被切换事件向下推。
这是我的html(简化):
<div class="row" id="contactesp">
<div class="twelve columns">
<!-- Contact Form 7 plugin shows the form here -->
</div>
</div>
<div class="row" id="contactmund">
<div class="twelve columns">
<!-- Contact Form 7 plugin shows the form here -->
</div>
</div>
<!-- Footer -->
<footer role="contentinfo" id="content-info">
<div class="row">Content here</div>
</footer>
我的 CSS(其中一些):
#content-info {
background-color: #1C3F94;
clear: both;
color: #FFFFFF;
float: none;
margin: 20px -20px 0;
padding: 0 4%;
display:block;
}
#contactesp, #contactmund {
display: none;
height: auto;
overflow: hidden;
}
我还在表单中添加了溢出:隐藏但无济于事。这是我的jQuery:
jQuery(document).ready(function ($) {
$('.enesp').on('click',function(){
$('#contactmund').hide();
$('#contactesp').toggle();
});
$('.enmund').on('click',function(){
$('#contactesp').hide();
$('#contactmund').toggle();
});
});
该站点在此处获取完整代码:http ://www.institutoespanol.net/contacto/当您单击地图框中的任一按钮时,就会出现问题。