gpt4 book ai didi

javascript - Twitter Bootstrap Modal - 未出现

转载 作者:行者123 更新时间:2023-12-02 17:34:40 28 4
gpt4 key购买 nike

我正在寻找使用 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">&times;</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>

现在根据文档,在使用部分下,我可以简单地使用上面的代码并通过数据属性调用模式。因此,这是我第一次使用该元素,所以我确信这是一件愚蠢的事情,我已经看过了,但我看不到它是什么......

最佳答案

检查代码的第 8 行。你有:

<script type="js/bootstrap.js"></script>

而不是:

<script src="js/bootstrap.js"></script>

如果没有正确加载 bootstrap.js 文件,它将无法工作。

关于javascript - Twitter Bootstrap Modal - 未出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22721988/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com