我在引导主题中使用 wordpress。我的问题是我在主页上打开了一个弹出窗口,它在 mozila 中工作正常,但在 chrome 中它显示垂直滚动条。plzzzz 伙计们帮助我。
这是我的弹出 div 代码:
<div id="openHouse" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="overflow-y:hidden">
<div class="modal-body">
<button type="button" class="close well" data-dismiss="modal">×</button><br />
<a href="http://pearlacademy.com/open-house/"><img src="http://pearlacademy.com/wp-content/uploads/2012/11/Open-House-2.jpg" /></a>
</div>
</div>
和 jquery 文件:
<script>
jQuery(document).ready(function($) {
$('#openHouse').modal('show');
});
</script>