我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>