我正在使用 Bootstrap
来布局我的页面并在某些地方使用模式框。现在,当我单击一个链接时,它会打开一个确认模式框,至少它应该是这样。但是,如果窗口太宽 (~ >700px),它只会显示部分模态框:
如果窗口足够小(可能与响应有关),它将显示整个屏幕。
下面是我如何实现模态框的。
<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>
看起来像这一行:
<link rel="stylesheet" href="${cherrypy.url('/asset/css/bootstrap.css')}" media="screen" />
与来自 cdn 的组合 Bootstrap 文件冲突:
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
只需删除来自 assets 的 bootstrap.css 链接,您就可以了。
注意:这是从评论中得出的——只是放在这里以防其他人发生这种情况
我是一名优秀的程序员,十分优秀!