我无法显示模态。我正在使用bootstrap 3.0.3。当我单击按钮时,屏幕变为灰色,但不会弹出模态。 css和js文件与html文件位于同一目录中。我知道这段代码有效,因为我从http://www.tutorialrepublic.com/codelab.php?topic=bootstrap&file=activate-modals-via-javascript复制并粘贴了它。所以这让我觉得我在头部声明我的css和js文件的方式出了问题。任何帮助将不胜感激!
<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of Twitter Bootstrap Modals</title>
<link rel="stylesheet" type="text/css" href="bootstrap.min.css">
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="bootstrap.min.js"></script>
<script type="text/javascript">
$(function(){
$(".btn").click(function(){
$("#myModal").modal('show');
});
});
</script>
<style type="text/css">
.bs-example{
margin: 20px;
}
</style>
</head>
<body>
<div class="bs-example">
<!-- Button HTML (to Trigger Modal) -->
<a href="#" class="btn btn-large btn-primary">Launch Demo Modal</a>
<!-- Modal HTML -->
<div id="myModal" class="modal hide fade">
<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>Do you want to save changes you made to document before closing?</p>
<p class="text-warning"><small>If you don't save, your changes will be lost.</small></p>
</div>
<div class="modal-footer">
<a href="#" class="btn">Close</a>
<a href="#" class="btn btn-primary">Save changes</a>
</div>
</div>
</div>
</body>
</html>
答案 0 :(得分:0)
你使用类.hide,它有样式:
.hide{
display: none!
}
这些规则始终隐藏块
更好的解决方案 1.为此添加特殊类:
.hide-block{
display: none;
}
<div id="myModal" class="modal hide-block fade">
2.第二种方式是使用内联样式
<div id="myModal" class="modal fade" style="display: none">
但这不如第一个解决方案