模态框未完全显示

时间:2013-06-25 14:46:26

标签: javascript css twitter-bootstrap modal-dialog cherrypy

我正在使用Bootstrap来布局我的页面并在某些地方使用模态框。 现在,当我点击链接时,它会打开一个确认模式框,至少它是假设的。 但是,如果窗口太宽(〜> 700px),它将仅显示模态框的一部分:

enter image description here

如果窗口足够小(可能与响应性有关),它将显示整个屏幕。

以下是我实现模态框的方法。

<a class="confirm-delete" data-id=someValue role="button"><i class="icon-trash"></i></a>

$('.confirm-delete').click(function(e) {                
    e.preventDefault();                                 
    var id = $(this).data('id');                        
    $('#deleteConfirmation').data('id', id).modal('show');                                                              
});

$('#deleteConfirmation').bind('show', function() {
    var id = $(this).data('id');                        
});

以下是我包含的css和脚本的一部分:

<link rel="stylesheet" href="${cherrypy.url('/asset/css/bootstrap.css')}" media="screen" />
<link rel="stylesheet" href="${cherrypy.url('/asset/css/glyphicons.css')}" media="screen" />
<link rel="stylesheet" href="${cherrypy.url('/asset/css/datepicker.css')}" media="screen" />
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link rel="stylesheet" href="${cherrypy.url('/asset/css/modified-bootstrap-responsive.min.css')}" media="screen" />
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" type="text/css" />

任何想法可能是不完全显示模态框的原因?对不起,我无法在小提琴中重现问题,也无法提供实时网站。                             

<script src="http://code.jquery.com/jquery-1.8.3.js" type="text/javascript"></script>                              
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js" type="text/javascript"></script>                        
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>                      
<script src="${cherrypy.url('/asset/js/bootstrap-datepicker.js')}"></script> 

编辑: 我在HTML页面上没有太多内容。只需一个按钮和确认框。

这是页面的结构:

<%! import cherrypy %>
<!DOCTYPE html>
<html>
<head>
    <%include file="header.mako"/>
</head>
    <!-- Piwik Tracking Code -->
<body>
<%include file="navigation.mako"/>
    <div class="container">
        <p>
            ${self.body()}
        </p>
    </div>
  </body>
</html>

header.mako包含我上面发布的样式表,${self.body()}是确认对话框和JS(上面发布):

<div class="modal hide fade" id="deleteConfirmation" tabindex="-1" role="dialog" aria-hidden="true">
    <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button
        <h3>Confirmation</h3>
    </div>
    <div class="modal-body"><p class="error-text">Sure?</p>
    </div>
    <div class="modal-footer">
        <button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button><a href="${cherrypy.url('email=')}" class="btn btn-danger">Delete</a>
    </div>
</div>

1 个答案:

答案 0 :(得分:1)

看起来像这一行:

<link rel="stylesheet" href="${cherrypy.url('/asset/css/bootstrap.css')}" media="screen" />

与来自cdn的组合引导程序文件冲突:

<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">

只需删除来自资产的bootstrap.css链接即可。

注意:这是从评论中得出的 - 只是放在这里以防其他人发生这种情况