我希望使用twitter bootstrap模式功能。因此,我从文档中粘贴了复制并包含所有文件。但每次点击我的按钮都没有出现,我不确定原因:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Testing</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<script src="js/jquery-1.10.2.js"></script>
<script type="js/bootstrap.js"></script>
</head>
<body style="background:#bf9d93;">
<!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal" >
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
</body>
</html>
现在根据文档,在使用部分我可以简单地使用上面的代码并通过数据属性调用模态。因此,这是我第一次使用这个元素,所以我确定它看起来很愚蠢,但我看不出它是什么......
答案 0 :(得分:3)
检查代码的第8行。你有:
<script type="js/bootstrap.js"></script>
而不是:
<script src="js/bootstrap.js"></script>
如果没有正确加载bootstrap.js文件,它将无法正常工作。
答案 1 :(得分:-1)
点击事件调用:
$('#myModal).modal({ show: true });