我正在使用 jQuery bootstrap 构建一个项目。所有 html 静态引导程序都绝对完美。但是 jQuery 部分不起作用。Console 认为,Bootstrap 的 JavaScript 需要 jQuery。但我的想法不同,因为我添加了 jQuery。
我的代码:
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel = "stylesheet" type = "text/css" href = "bootstrap/dist/css/bootstrap.css">
<link rel = "stylesheet" type = "text/css" href = "bootstrap/dist/css/bootstrap-theme.css">
<script src = "bootstrap/dist/js/bootstrap.js"></script>
<script src = "js/jquery-3.2.1.js"></script>
此文件中的所有路径均已正确添加。我已经自动将它们添加到我的括号中。
我的错在哪里?